diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-04-01 17:27:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 17:27:40 +0300 |
commit | fffcb609c66c184a1b24dc3eb2070dbdeace09ce (patch) | |
tree | 77c17941d27c31f01f19d954189f2fcc36c3d6c3 /src | |
parent | 07d667dba8a68d73f81d682193d1558daa5d5f15 (diff) | |
download | voidsky-fffcb609c66c184a1b24dc3eb2070dbdeace09ce.tar.zst |
fix warnings (#8092)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/app-info.web.ts | 4 | ||||
-rw-r--r-- | src/screens/VideoFeed/index.web.tsx | 2 |
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 } |