diff --git a/samples/expo/app/(tabs)/index.tsx b/samples/expo/app/(tabs)/index.tsx index 8b651d2d54..5d679fc5d4 100644 --- a/samples/expo/app/(tabs)/index.tsx +++ b/samples/expo/app/(tabs)/index.tsx @@ -2,14 +2,16 @@ import { Button, StyleSheet } from 'react-native'; import Constants from 'expo-constants'; import * as Sentry from '@sentry/react-native'; import { reloadAppAsync } from 'expo'; +import * as DevClient from 'expo-dev-client'; import { Text, View } from '@/components/Themed'; import { setScopeProperties } from '@/utils/setScopeProperties'; import React from 'react'; import * as WebBrowser from 'expo-web-browser'; import { useUpdates } from 'expo-updates'; +import { isWeb } from '../../utils/isWeb'; -const isRunningInExpoGo = Constants.appOwnership === 'expo' +const isRunningInExpoGo = Constants.appOwnership === 'expo'; export default function TabOneScreen() { const { currentlyRunning } = useUpdates(); @@ -20,6 +22,13 @@ export default function TabOneScreen() { Update ID: {currentlyRunning.updateId} Channel: {currentlyRunning.channel} Runtime Version: {currentlyRunning.runtimeVersion} +