Skip to content

Commit 3cadc54

Browse files
authored
Merge pull request #3228 from oxen-io/release/1.14.2
fix: test if rosetta emulation needs more time to mount react qrcode
2 parents bce4bd4 + 980554c commit 3cadc54

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "session-desktop",
33
"productName": "Session",
44
"description": "Private messaging from your desktop",
5-
"version": "1.14.1",
5+
"version": "1.14.2",
66
"license": "GPL-3.0",
77
"author": {
88
"name": "Oxen Labs",

ts/hooks/useIconToImageURL.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,11 @@ export const convertIconToImageURL = async (
5858
/>
5959
);
6060
// wait for it to render
61-
await sleepFor(100);
61+
await sleepFor(200);
6262

6363
const svg = root?.querySelector(`#icon-to-image-url svg`);
6464
svg?.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
6565
const svgString = svg?.outerHTML;
66-
6766
reactRoot?.unmount();
6867
root?.removeChild(divElement);
6968

0 commit comments

Comments
 (0)