diff --git a/blog/2024-03-25-introducing-static-api.md b/blog/2024-03-25-introducing-static-api.md index cbc50770f5..da1edacfc0 100644 --- a/blog/2024-03-25-introducing-static-api.md +++ b/blog/2024-03-25-introducing-static-api.md @@ -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, }, },