Skip to content

Commit

Permalink
test fix for loading regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Julesssss committed Sep 30, 2024
1 parent 8636074 commit 8701f8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libs/Navigation/AppNavigator/AuthScreens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import useThemeStyles from '@hooks/useThemeStyles';
import {READ_COMMANDS} from '@libs/API/types';
import HttpUtils from '@libs/HttpUtils';
import KeyboardShortcut from '@libs/KeyboardShortcut';

Check failure on line 18 in src/libs/Navigation/AppNavigator/AuthScreens.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Delete `';⏎import·FullScreenLoadingIndicator·from·'@components/FullscreenLoadingIndicator`

Check failure on line 18 in src/libs/Navigation/AppNavigator/AuthScreens.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Delete `';⏎import·FullScreenLoadingIndicator·from·'@components/FullscreenLoadingIndicator`
import FullScreenLoadingIndicator from '@components/FullscreenLoadingIndicator';
import Log from '@libs/Log';
import getCurrentUrl from '@libs/Navigation/currentUrl';
import getOnboardingModalScreenOptions from '@libs/Navigation/getOnboardingModalScreenOptions';
Expand Down Expand Up @@ -399,7 +400,7 @@ function AuthScreens() {
cardStyle: styles.cardStyleNavigator,
};
if (isLoadingOnyxValue(sessionStatus, lastOpenedPublicRoomIDStatus, initialLastUpdateIDAppliedToClientStatus)) {
return;
return <FullScreenLoadingIndicator />;
}

return (
Expand Down

0 comments on commit 8701f8c

Please sign in to comment.