fix destructuration error from outdated initial sig alg name

This commit is contained in:
0xturboblitz
2025-03-12 20:11:45 -07:00
parent b440c9fa17
commit b3898f2dd9

View File

@@ -48,7 +48,7 @@ const MockDataScreen: React.FC<MockDataScreenProps> = ({}) => {
).toString();
};
const [selectedCountry, setSelectedCountry] = useState('USA');
const [selectedAlgorithm, setSelectedAlgorithm] = useState('rsa sha256');
const [selectedAlgorithm, setSelectedAlgorithm] = useState('sha256 rsa 65537 2048');
const [isCountrySheetOpen, setCountrySheetOpen] = useState(false);
const [isAlgorithmSheetOpen, setAlgorithmSheetOpen] = useState(false);