📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-14 16:02:32 +00:00
parent b4618ee9e9
commit 167b2b60dd
315 changed files with 47462 additions and 4210 deletions
@@ -63,6 +63,9 @@ export const RootNavigator = () => {
```typescript
// Client state — Zustand
// Do not persist bearer or refresh tokens in AsyncStorage/plain MMKV.
// Store secrets with a platform-backed module such as react-native-keychain
// or expo-secure-store, and persist only non-sensitive UI state here.
interface AuthState {
token: string | null;
isLoggedIn: boolean;
@@ -78,7 +81,7 @@ export const useAuthStore = create<AuthState>()(
setToken: (token) => set({ token, isLoggedIn: true }),
logout: () => set({ token: null, isLoggedIn: false }),
}),
{ name: 'auth-storage', storage: createJSONStorage(() => mmkvStorage) }
{ name: 'auth-ui-storage', storage: createJSONStorage(() => mmkvStorage) }
)
);
@@ -239,4 +242,4 @@ describe('HomeScreen', () => {
expect(await findByText('Test Item')).toBeTruthy();
});
});
```
```