diff options
Diffstat (limited to 'src/view/shell/NavSignupCard.tsx')
-rw-r--r-- | src/view/shell/NavSignupCard.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/shell/NavSignupCard.tsx b/src/view/shell/NavSignupCard.tsx index 7026dd2a6..11dd7ffee 100644 --- a/src/view/shell/NavSignupCard.tsx +++ b/src/view/shell/NavSignupCard.tsx @@ -11,7 +11,7 @@ import {Button} from '#/view/com/util/forms/Button' import {useLoggedOutViewControls} from '#/state/shell/logged-out' import {useCloseAllActiveElements} from '#/state/util' -export function NavSignupCard() { +let NavSignupCard = ({}: {}): React.ReactNode => { const {_} = useLingui() const pal = usePalette('default') const {setShowLoggedOut} = useLoggedOutViewControls() @@ -59,3 +59,5 @@ export function NavSignupCard() { </View> ) } +NavSignupCard = React.memo(NavSignupCard) +export {NavSignupCard} |