Skip to content

Commit

Permalink
fix: popup mode (#136)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Rincon <“carlos.r@affinidi.com”>
  • Loading branch information
carlos-affinidi and Carlos Rincon authored Jul 17, 2024
1 parent 0a2d7ad commit 0f27252
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 0f27252

Please sign in to comment.