chore: Stage all remaining changes before merge

This commit is contained in:
LC mac
2026-02-07 13:47:52 +08:00
parent cf3412b235
commit 008406ef59
7 changed files with 22 additions and 421 deletions

View File

@@ -161,7 +161,6 @@ export function SeedBlender({ onDirtyStateChange, setMnemonicForBackup, requestT
const handleScanSuccess = useCallback(async (scannedData: string | Uint8Array) => {
if (scanTargetIndex === null) return;
// Convert binary data to hex string if necessary
const scannedText = typeof scannedData === 'string'
? scannedData
: Array.from(scannedData).map(b => b.toString(16).padStart(2, '0')).join('');