Skip to content

Commit

Permalink
fix: popup mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Rincon committed Jul 17, 2024
1 parent 0a2d7ad commit 5d98ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/iota-browser/src/helpers/vault-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class VaultHandler {
Logger.debug('Opening vault', params)
const { link, mode = OpenMode.NewTab } = params
let windowFeatures = ''
if (mode === OpenMode.Popup) {
if (mode == OpenMode.Popup) {
const width = 450
const height = 800
const left = (window.screen.width - width) / 2
Expand Down

0 comments on commit 5d98ac2

Please sign in to comment.