From 425319785ffb53d10378b5ede6f5858e86e476cc Mon Sep 17 00:00:00 2001 From: William Grant Date: Thu, 18 Apr 2024 14:23:11 +1000 Subject: [PATCH] fix: prevent flickering on EmptyMessageView --- ts/components/EmptyMessageView.tsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/ts/components/EmptyMessageView.tsx b/ts/components/EmptyMessageView.tsx index bb4802581..ce9dab861 100644 --- a/ts/components/EmptyMessageView.tsx +++ b/ts/components/EmptyMessageView.tsx @@ -1,6 +1,4 @@ -import { useState } from 'react'; import { useSelector } from 'react-redux'; -import { useMount } from 'react-use'; import styled from 'styled-components'; import { getLeftPaneConversationIdsCount } from '../state/selectors/conversations'; import { isSignWithRecoveryPhrase } from '../util/storage'; @@ -71,14 +69,8 @@ export const EmptyMessageView = () => { const conversationCount = useSelector(getLeftPaneConversationIdsCount); const isSignInWithRecoveryPhrase = isSignWithRecoveryPhrase(); - const [newAccountCreated, setNewAccountCreated] = useState(false); - - useMount(() => { - const launchCount = window.getSettingValue('launch-count'); - if (!isSignInWithRecoveryPhrase && (!launchCount || launchCount < 1)) { - setNewAccountCreated(true); - } - }); + const launchCount = window.getSettingValue('launch-count'); + const newAccountCreated = !isSignInWithRecoveryPhrase && (!launchCount || launchCount < 1); return (