From 268713c437a4d7d34e8a53fe6571f1185649fe2f Mon Sep 17 00:00:00 2001 From: greatsamist Date: Thu, 8 Aug 2024 13:38:05 +0100 Subject: [PATCH] fix authenticated check for support --- packages/app/components/misc/Support/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/app/components/misc/Support/index.tsx b/packages/app/components/misc/Support/index.tsx index ec57c0a4b..ab034ab6f 100644 --- a/packages/app/components/misc/Support/index.tsx +++ b/packages/app/components/misc/Support/index.tsx @@ -62,6 +62,7 @@ const Support = () => { setMessageSent(false); setOpen(false); }; + const isAuthenticated = authenticated || address; return ( @@ -91,7 +92,7 @@ const Support = () => {

- {!authenticated || !!address ? ( + {!isAuthenticated ? (

Sign in to send us a message