From 835590c00c3a3583a4e44918dfee9e58336b35ff Mon Sep 17 00:00:00 2001 From: Pavlos Vinieratos Date: Fri, 25 Oct 2024 10:35:47 +0300 Subject: [PATCH] typo --- blog/2024-03-25-introducing-static-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, }, },