Skip to content

Commit

Permalink
Fix smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ce0la committed Jun 25, 2024
1 parent 0c28b4e commit e67a19a
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,15 @@ export const WalletAccounts = ({ isPopup, onBack }: { isPopup: boolean; onBack:
[disableAccountConfirmation, accountsData]
);

const showHWErrorState = useCallback((accountIndex: number) => {
enableAccountHWSigningDialog.setData({
accountIndex,
state: 'error'
});
}, [enableAccountHWSigningDialog]);
const showHWErrorState = useCallback(
(accountIndex: number) => {
enableAccountHWSigningDialog.setData({
accountIndex,
state: 'error'
});
},
[enableAccountHWSigningDialog]
);

const unlockHWAccount = useCallback(
async (accountIndex: number) => {
Expand Down

0 comments on commit e67a19a

Please sign in to comment.