From 798e8c118eba58ff56a79b3f1d6aed825d0c8d12 Mon Sep 17 00:00:00 2001 From: Roland Bewick Date: Sat, 26 Oct 2024 22:54:48 +0700 Subject: [PATCH] fix: import wallet copy --- src/pages/Home.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index e23e8be..f919be7 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -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; }