From 8107930bbf798163f1c8a67ffdcf74d5950cce67 Mon Sep 17 00:00:00 2001 From: Aayush Rajagopalan Date: Thu, 19 Dec 2024 02:11:09 +0300 Subject: [PATCH] change the marking of the _layout.tsx file (#1825) --- docs/quickstarts/expo.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstarts/expo.mdx b/docs/quickstarts/expo.mdx index 1ef8b7da8e..1e642dfa86 100644 --- a/docs/quickstarts/expo.mdx +++ b/docs/quickstarts/expo.mdx @@ -176,7 +176,7 @@ description: Add authentication and user management to your Expo app with Clerk. export const tokenCache = Platform.OS !== 'web' ? createTokenCache() : undefined ``` 1. Update your root layout to use the token cache: - ```tsx {{ filename: 'app/_layout.tsx', mark: [3, 13] }} + ```tsx {{ filename: 'app/_layout.tsx', mark: [1, 13] }} import { tokenCache } from '@/cache' import { ClerkProvider, ClerkLoaded } from '@clerk/clerk-expo' import { Slot } from 'expo-router'