Skip to content

Commit

Permalink
always show logout button on wait screen
Browse files Browse the repository at this point in the history
  • Loading branch information
latter-bolden committed Jan 17, 2025
1 parent 46f3ea2 commit 7f6135b
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,11 @@ export function GettingNodeReadyScreen({
return (
<View flex={1} backgroundColor="$secondaryBackground">
<ScreenHeader
title={
params.wasLoggedIn ? 'Node Stopped' : 'Getting Your Computer Ready'
}
title={params.wasLoggedIn ? 'Node Stopped' : 'Starting Your Node'}
leftControls={
params.wasLoggedIn ? (
<ScreenHeader.TextButton onPress={onLogout} disabled={loggingOut}>
Log out
</ScreenHeader.TextButton>
) : undefined
<ScreenHeader.TextButton onPress={onLogout} disabled={loggingOut}>
Log out
</ScreenHeader.TextButton>
}
showSessionStatus={false}
/>
Expand Down

0 comments on commit 7f6135b

Please sign in to comment.