Skip to content

Commit

Permalink
fix: import wallet copy
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Oct 26, 2024
1 parent 0fcb5da commit 798e8c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ export function Home() {
// Needed on iOS because PWA localStorage is not shared with Safari.
// PWA can only be installed with a static URL (e.g. "/pos/").
function importWallet() {
const url = prompt("Copy wallet URL from your browser");
const url = prompt(
"On BuzzPay in another browser, go to the sidebar menu -> Share with a co-worker, copy the share URL and paste it here."
);
if (url) {
window.location.href = url;
}
Expand Down

0 comments on commit 798e8c1

Please sign in to comment.