We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a17960 commit 8564d60Copy full SHA for 8564d60
packages/suite/src/views/recovery/index.tsx
@@ -179,11 +179,13 @@ export const Recovery = ({ onCancel }: ForegroundAppProps) => {
179
return <Loading />;
180
}
181
182
- return device.features.capabilities.includes('Capability_PassphraseEntry') ? (
183
- <EnterOnDeviceStep />
184
- ) : (
185
- <T1B1InputStep />
186
- );
+ // Do not rely on Capability_PassphraseEntry feature. For ancient firmwares it's not there,
+ // and we want to allow devices that have unsupported FW to be able to check the seed.
+ if (device.features.internal_model === DeviceModelInternal.T1B1) {
+ return <T1B1InputStep />;
+ }
187
+
188
+ return <EnterOnDeviceStep />;
189
190
case 'finished':
191
return !hasError ? (
0 commit comments