Skip to content

Commit

Permalink
fix: sync qr code not visible (#18944)
Browse files Browse the repository at this point in the history
  • Loading branch information
qfrank authored Feb 23, 2024
1 parent 5d00c09 commit 4469717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/status_im/common/qr_codes/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
(let [qr-media-server-uri (image-server/get-qr-image-uri-for-any-url
{:url url
:port (rf/sub [:mediaserver/port])
:qr-size (or (int size) 400)
:qr-size (or (and size (int size)) 400)
:error-level :highest})]
[quo/qr-code
(assoc props
Expand Down

0 comments on commit 4469717

Please sign in to comment.