From 82a29587a2865eeac83e8eacfade32ddf9c8b22c Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 16 Jan 2025 18:30:13 -0600 Subject: [PATCH] Handle web, set up new organization --- src/Navigation.tsx | 2 +- src/screens/VideoFeed/index.tsx | 1 + src/screens/VideoFeed/index.web.tsx | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 src/screens/VideoFeed/index.tsx create mode 100644 src/screens/VideoFeed/index.web.tsx diff --git a/src/Navigation.tsx b/src/Navigation.tsx index d637c4efe5..a6332c5d88 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -86,10 +86,10 @@ import { StarterPackScreenShort, } from '#/screens/StarterPack/StarterPackScreen' import {Wizard} from '#/screens/StarterPack/Wizard' +import {VideoFeed} from '#/screens/VideoFeed' import {useTheme} from '#/alf' import {router} from '#/routes' import {Referrer} from '../modules/expo-bluesky-swiss-army' -import {VideoFeed} from './screens/Feeds/VibeScreen' import {AboutSettingsScreen} from './screens/Settings/AboutSettings' import {AccessibilitySettingsScreen} from './screens/Settings/AccessibilitySettings' import {AccountSettingsScreen} from './screens/Settings/AccountSettings' diff --git a/src/screens/VideoFeed/index.tsx b/src/screens/VideoFeed/index.tsx new file mode 100644 index 0000000000..b9412343e4 --- /dev/null +++ b/src/screens/VideoFeed/index.tsx @@ -0,0 +1 @@ +export {VideoFeed} from '#/screens/Feeds/VibeScreen' diff --git a/src/screens/VideoFeed/index.web.tsx b/src/screens/VideoFeed/index.web.tsx new file mode 100644 index 0000000000..38ec8cc0ad --- /dev/null +++ b/src/screens/VideoFeed/index.web.tsx @@ -0,0 +1,3 @@ +export function VideoScreen() { + return null +}