From 13857c2eae50fa30d27b65aeead8a32af59b0e80 Mon Sep 17 00:00:00 2001 From: chmjkb Date: Thu, 21 May 2026 08:39:16 +0200 Subject: [PATCH] fix: flip the condition for isDevice --- apps/computer-vision/components/BottomBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/computer-vision/components/BottomBar.tsx b/apps/computer-vision/components/BottomBar.tsx index 0a554fc817..617abe11fc 100644 --- a/apps/computer-vision/components/BottomBar.tsx +++ b/apps/computer-vision/components/BottomBar.tsx @@ -4,7 +4,7 @@ import { View, TouchableOpacity, StyleSheet, Text } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import DeviceInfo from 'react-native-device-info'; -const isDevice = DeviceInfo.isEmulatorSync(); +const isDevice = !DeviceInfo.isEmulatorSync(); export const BottomBar = ({ handleCameraPress,