Skip to content

Commit

Permalink
update support link
Browse files Browse the repository at this point in the history
  • Loading branch information
BitHighlander committed Nov 29, 2023
1 parent 4f3489a commit 1600ade
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const NavBar = ({ isCompact, onClick, ...rest }: NavBarProps) => {
as={Link}
isExternal
size='sm'
href='https://discord.gg/stfRnW3Jys'
href='https://discord.gg/P7Yw8gHUhn'
label={translate('common.joinDiscord')}
leftIcon={<ChatIcon />}
data-test='navigation-join-discord-button'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const WalletConnectLogic = () => {
useEffect(() => {
createWallectConnectWeb3Wallet().then(client => {
client.on('session_proposal', addProposal)
client.on('session_request', req => {
client.on('session_request', (req: { params: { request: { method: any } }; id: any; topic: any }) => {
console.log("req: ", req)
console.log("req: ", JSON.stringify(req))
console.log("req: ", req.params.request.method)
Expand All @@ -26,7 +26,7 @@ export const WalletConnectLogic = () => {
}
})
client.on('session_delete', onDisconnect)
client.on('auth_request', data => {
client.on('auth_request', (data: any) => {
console.log('AUTH REQUEST', data)
})
})
Expand Down

0 comments on commit 1600ade

Please sign in to comment.