about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/lib/app-info.web.ts4
-rw-r--r--src/screens/VideoFeed/index.web.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/app-info.web.ts b/src/lib/app-info.web.ts
index 94c787cbc..1530d9976 100644
--- a/src/lib/app-info.web.ts
+++ b/src/lib/app-info.web.ts
@@ -1,4 +1,4 @@
-import {version} from '../../package.json'
+import packageDotJson from '../../package.json'
 
 export const IS_TESTFLIGHT = false
 export const IS_INTERNAL = __DEV__
@@ -14,5 +14,5 @@ export const BUNDLE_DATE = __DEV__
   ? 0
   : Number(process.env.EXPO_PUBLIC_BUNDLE_DATE)
 
-export const appVersion = version
+export const appVersion = packageDotJson.version
 export const bundleInfo = `${BUNDLE_IDENTIFIER} (${__DEV__ ? 'dev' : 'prod'})`
diff --git a/src/screens/VideoFeed/index.web.tsx b/src/screens/VideoFeed/index.web.tsx
index 38ec8cc0a..27e2a6ffd 100644
--- a/src/screens/VideoFeed/index.web.tsx
+++ b/src/screens/VideoFeed/index.web.tsx
@@ -1,3 +1,3 @@
-export function VideoScreen() {
+export function VideoFeed() {
   return null
 }