fix: prevent flickering on EmptyMessageView

pull/3056/head
William Grant 12 months ago
parent ab544070dd
commit 425319785f

@ -1,6 +1,4 @@
import { useState } from 'react';
import { useSelector } from 'react-redux'; import { useSelector } from 'react-redux';
import { useMount } from 'react-use';
import styled from 'styled-components'; import styled from 'styled-components';
import { getLeftPaneConversationIdsCount } from '../state/selectors/conversations'; import { getLeftPaneConversationIdsCount } from '../state/selectors/conversations';
import { isSignWithRecoveryPhrase } from '../util/storage'; import { isSignWithRecoveryPhrase } from '../util/storage';
@ -71,14 +69,8 @@ export const EmptyMessageView = () => {
const conversationCount = useSelector(getLeftPaneConversationIdsCount); const conversationCount = useSelector(getLeftPaneConversationIdsCount);
const isSignInWithRecoveryPhrase = isSignWithRecoveryPhrase(); const isSignInWithRecoveryPhrase = isSignWithRecoveryPhrase();
const [newAccountCreated, setNewAccountCreated] = useState(false); const launchCount = window.getSettingValue('launch-count');
const newAccountCreated = !isSignInWithRecoveryPhrase && (!launchCount || launchCount < 1);
useMount(() => {
const launchCount = window.getSettingValue('launch-count');
if (!isSignInWithRecoveryPhrase && (!launchCount || launchCount < 1)) {
setNewAccountCreated(true);
}
});
return ( return (
<StyledPlaceholder <StyledPlaceholder

Loading…
Cancel
Save