From 237c9fd9515b588cb1d34d996ba3c52546432749 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Thu, 9 Feb 2023 09:57:39 -0800 Subject: [PATCH] Fix bug on copied referral links --- frontend/src/components/Dialogs/Profile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Dialogs/Profile.tsx b/frontend/src/components/Dialogs/Profile.tsx index cfcb93d5..244d0d97 100644 --- a/frontend/src/components/Dialogs/Profile.tsx +++ b/frontend/src/components/Dialogs/Profile.tsx @@ -91,7 +91,7 @@ const ProfileDialog = ({ }; const copyReferralCodeHandler = () => { - systemClient.copyToClipboard(`http://${host}/ref/${robot.referralCode}`); + systemClient.copyToClipboard(`http://${host}/robot/${robot.referralCode}`); }; const handleWeblnInvoiceClicked = async (e: any) => {