Skip to content

Commit e3fc0a8

Browse files
authored
fix: [lw-12709] fix upgrade to lace from nami dapp (#1843)
1 parent ddecd02 commit e3fc0a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/browser-extension-wallet/src/dapp-connector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const App = (): React.ReactElement => {
3232
const oldModeValue = changes.BACKGROUND_STORAGE?.oldValue?.namiMigration;
3333
const newModeValue = changes.BACKGROUND_STORAGE?.newValue?.namiMigration;
3434
if (oldModeValue?.mode !== newModeValue?.mode) {
35-
setMode(newModeValue);
35+
setMode(newModeValue.mode);
3636
}
3737
});
3838

0 commit comments

Comments
 (0)