Fix add projectid (#52)

* Fix add projectid

* Add project id prefix
This commit is contained in:
Celine Sarafa 2022-09-05 15:17:24 +03:00 committed by GitHub
parent aedddbcbdc
commit b15e0c6544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ const Home: NextPage = () => {
AuthClient.init({ AuthClient.init({
relayUrl: relayUrl:
process.env.NEXT_PUBLIC_RELAY_URL || "wss://relay.walletconnect.com", process.env.NEXT_PUBLIC_RELAY_URL || "wss://relay.walletconnect.com",
projectId: undefined, projectId: process.env.NEXT_PUBLIC_PROJECT_ID,
}) })
.then((v) => { .then((v) => {
setClient(v); setClient(v);