Skip to content

Commit 5e20cb6

Browse files
authored
hide siwe tooltip when using hideTooltips option (#310)
1 parent b472123 commit 5e20cb6

File tree

1 file changed

+1
-1
lines changed
  • packages/connectkit/src/components/Common/Modal

1 file changed

+1
-1
lines changed

Diff for: packages/connectkit/src/components/Common/Modal/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ const Modal: React.FC<ModalProps> = ({
509509
) : context.route === routes.PROFILE &&
510510
context.signInWithEthereum ? (
511511
<>
512-
{!isSignedIn && (
512+
{!isSignedIn && !context.options?.hideTooltips && (
513513
<motion.div
514514
style={{
515515
position: 'absolute',

0 commit comments

Comments
 (0)