Commit 6668a55 1 parent c5c9023 commit 6668a55 Copy full SHA for 6668a55
File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,10 @@ const AppContent = () => {
103
103
} , [ ] ) ;
104
104
105
105
const getComponent = ( ) => {
106
- if ( ( isP2PSettingsLoading || isLoadingActiveAccount || ! isFetched || ! activeAccountData ) && ! isEndpointRoute ) {
106
+ if (
107
+ ( isP2PSettingsLoading || isLoadingActiveAccount || ! isFetched || ! activeAccountData || isLoading ) &&
108
+ ! isEndpointRoute
109
+ ) {
107
110
return < Loader /> ;
108
111
} else if ( ( isP2PBlocked && ! isEndpointRoute ) || isPermissionDenied || p2pSettingsError ?. code ) {
109
112
return (
@@ -128,7 +131,7 @@ const AppContent = () => {
128
131
) ) }
129
132
</ Tabs >
130
133
{ isDesktop && ! isEndpointRoute && < GuideTooltip /> }
131
- < SafetyAlertModal />
134
+ { ! isEndpointRoute && < SafetyAlertModal /> }
132
135
< Router />
133
136
</ div >
134
137
) ;
You can’t perform that action at this time.
0 commit comments