Skip to content

Commit 2b279bb

Browse files
committed
Merge branch 'ble-ios'
2 parents 62ecc62 + 9d774b2 commit 2b279bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontends/web/src/routes/settings/bb02-settings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import { useState, useEffect } from 'react';
1818
import { useLoad } from '@/hooks/api';
1919
import { useTranslation } from 'react-i18next';
20+
import { runningInIOS } from '@/utils/env';
2021
import { GuideWrapper, GuidedContent, Header, Main } from '@/components/layout';
2122
import { ViewContent, View } from '@/components/view/view';
2223
import { WithSettingsTabs } from './components/tabs';
@@ -160,8 +161,7 @@ const Content = ({ deviceID }: TProps) => {
160161
{ deviceInfo && deviceInfo.bluetooth ? (
161162
<div className={styles.section}>
162163
<SubTitle className={styles.withMobilePadding}>Bluetooth</SubTitle>
163-
<BluetoothToggleEnabledSetting
164-
deviceID={deviceID} />
164+
{ !runningInIOS() ? <BluetoothToggleEnabledSetting deviceID={deviceID} /> : null }
165165
<BluetoothFirmwareSetting
166166
firmwareVersion={deviceInfo.bluetooth.firmwareVersion}
167167
/>

0 commit comments

Comments
 (0)