Skip to content

Commit 3bc5d58

Browse files
committed
Merge branch 'mobile-app' of github.com:PostHog/Array into mobile-app
2 parents 54f4b2a + ecae512 commit 3bc5d58

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/mobile/app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"expo": {
33
"name": "PostHog Mobile",
4-
"slug": "posthog-mobile",
4+
"slug": "posthog",
55
"version": "1.0.0",
66
"orientation": "portrait",
77
"icon": "./assets/icon.png",
88
"userInterfaceStyle": "dark",
99
"newArchEnabled": true,
1010
"bundler": "metro",
11-
"scheme": "posthog-mobile",
11+
"scheme": "posthog",
1212
"splash": {
1313
"image": "./assets/splash-icon.png",
1414
"resizeMode": "contain",

apps/mobile/src/lib/oauth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WebBrowser.maybeCompleteAuthSession();
1515

1616
export function getRedirectUri(): string {
1717
return AuthSession.makeRedirectUri({
18-
scheme: "posthog-mobile",
18+
scheme: "posthog",
1919
path: "callback",
2020
});
2121
}

apps/mobile/src/stores/authStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export const useAuthStore = create<AuthState>()(
216216
},
217217
}),
218218
{
219-
name: "posthog-mobile-auth",
219+
name: "posthog-auth",
220220
storage: createJSONStorage(() => AsyncStorage),
221221
partialize: (state) => ({
222222
cloudRegion: state.cloudRegion,

0 commit comments

Comments
 (0)