From b15e0c65443abe37fa82a195a8162909cf753181 Mon Sep 17 00:00:00 2001 From: Celine Sarafa Date: Mon, 5 Sep 2022 15:17:24 +0300 Subject: [PATCH] Fix add projectid (#52) * Fix add projectid * Add project id prefix --- dapps/react-dapp-auth/pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dapps/react-dapp-auth/pages/index.tsx b/dapps/react-dapp-auth/pages/index.tsx index b853ffc..2f27dc0 100644 --- a/dapps/react-dapp-auth/pages/index.tsx +++ b/dapps/react-dapp-auth/pages/index.tsx @@ -40,7 +40,7 @@ const Home: NextPage = () => { AuthClient.init({ relayUrl: process.env.NEXT_PUBLIC_RELAY_URL || "wss://relay.walletconnect.com", - projectId: undefined, + projectId: process.env.NEXT_PUBLIC_PROJECT_ID, }) .then((v) => { setClient(v);