diff --git a/packages/suite/src/components/suite/PrerequisitesGuide/DeviceAcquire.tsx b/packages/suite/src/components/suite/PrerequisitesGuide/DeviceAcquire.tsx
index 8e818d33bf9..5d1e53be6bb 100644
--- a/packages/suite/src/components/suite/PrerequisitesGuide/DeviceAcquire.tsx
+++ b/packages/suite/src/components/suite/PrerequisitesGuide/DeviceAcquire.tsx
@@ -6,6 +6,7 @@ import { isDesktop } from '@trezor/env-utils';
import { Translation, TroubleshootingTips } from 'src/components/suite';
import { useDevice, useDispatch } from 'src/hooks/suite';
+import { TROUBLESHOOTING_TIP_RECONNECT } from 'src/components/suite/troubleshooting/tips';
export const DeviceAcquire = () => {
const { isLocked, device } = useDevice();
@@ -53,19 +54,7 @@ export const DeviceAcquire = () => {
/>
),
},
- {
- key: 'device-reconnect',
- heading: ,
- description: (
-
- ),
- },
+ TROUBLESHOOTING_TIP_RECONNECT,
];
return (
diff --git a/packages/suite/src/components/suite/troubleshooting/tips/index.tsx b/packages/suite/src/components/suite/troubleshooting/tips/index.tsx
index 92b949ed862..afcf681a79d 100644
--- a/packages/suite/src/components/suite/troubleshooting/tips/index.tsx
+++ b/packages/suite/src/components/suite/troubleshooting/tips/index.tsx
@@ -1,4 +1,4 @@
-import { isWeb, isLinux, isAndroid } from '@trezor/env-utils';
+import { isWeb, isDesktop, isLinux, isAndroid } from '@trezor/env-utils';
import { Translation } from 'src/components/suite/Translation';
@@ -57,3 +57,17 @@ export const TROUBLESHOOTING_TIP_UDEV = {
description: ,
hide: !isLinux(),
};
+
+export const TROUBLESHOOTING_TIP_RECONNECT = {
+ key: 'device-reconnect',
+ heading: ,
+ description: (
+
+ ),
+};