Skip to content

Commit 4bcd59b

Browse files
committed
ios: show bluetooth picker in Manage Device
When there are watchonly accounts, the waiting screen is not shown. Instead, the user can connect a new device in Manage Device. Manage accounts also shows the same screen if there are no accounts. The assumption is that if there are no accounts, then there is no device connected, so we might as well show the device picker there too.
1 parent f82cb28 commit 4bcd59b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

frontends/web/src/routes/device/no-device-connected.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import { useTranslation } from 'react-i18next';
1818
import type { TPagePropsWithSettingsTabs } from '../settings/types';
19+
import { Bluetooth } from '@/components/bluetooth/bluetooth';
1920
import { GuideWrapper, GuidedContent, Header, Main } from '@/components/layout';
2021
import { ContentWrapper } from '@/components/contentwrapper/contentwrapper';
2122
import { ViewContent, View } from '@/components/view/view';
@@ -56,6 +57,7 @@ export const NoDeviceConnected = ({
5657
<div className={styles.noDevice}>
5758
{t('deviceSettings.noDevice')}
5859
</div>
60+
<Bluetooth />
5961
</WithSettingsTabs>
6062
</ViewContent>
6163
</View>

0 commit comments

Comments
 (0)