Skip to content

Commit

Permalink
Remove default object
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolen committed Nov 18, 2024
1 parent 6611508 commit 3d8b706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/LogOutPreviousUserPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type LogOutPreviousUserPageProps = StackScreenProps<AuthScreensParamList, typeof
function LogOutPreviousUserPage({route}: LogOutPreviousUserPageProps) {
const {initialURL} = useContext(InitialURLContext);
const [session] = useOnyx(ONYXKEYS.SESSION);
const [account = {}] = useOnyx(ONYXKEYS.ACCOUNT);
const [account] = useOnyx(ONYXKEYS.ACCOUNT);
const isAccountLoading = account?.isLoading;

useEffect(() => {
Expand Down

0 comments on commit 3d8b706

Please sign in to comment.