fix warnings (#8092)

This commit is contained in:
Samuel Newman
2025-04-01 17:27:40 +03:00
committed by GitHub
parent 07d667dba8
commit fffcb609c6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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'})`
+1 -1
View File
@@ -1,3 +1,3 @@
export function VideoScreen() {
export function VideoFeed() {
return null
}