Skip to content
Closed

typo #1378

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions blog/2024-03-25-introducing-static-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ One of the nice things about the dynamic APIs is the declarative authentication
const RootStack = createNativeStackNavigator({
screens: {
Home: {
if: useIsSignedIn,
if: userIsSignedIn,
screen: HomeScreen,
},
SignIn: {
if: useIsSignedOut,
if: userIsSignedOut,
screen: SignInScreen,
},
},
Expand Down
Loading