From 5ed15a67614c586f850c5f59108d7d8986d5302a Mon Sep 17 00:00:00 2001 From: omaroughriss Date: Thu, 24 Jul 2025 12:51:59 +0200 Subject: [PATCH] Update url callback --- .../Folder/FolderInformation/ClientView/ClientBox/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/front/Components/Layouts/Folder/FolderInformation/ClientView/ClientBox/index.tsx b/src/front/Components/Layouts/Folder/FolderInformation/ClientView/ClientBox/index.tsx index fd44a797..57a1b12b 100644 --- a/src/front/Components/Layouts/Folder/FolderInformation/ClientView/ClientBox/index.tsx +++ b/src/front/Components/Layouts/Folder/FolderInformation/ClientView/ClientBox/index.tsx @@ -32,7 +32,7 @@ export default function ClientBox(props: IProps) { // TODO: review const handleOpenConnectionLink = useCallback(() => { - const url = `http://localhost:3000/client-dashboard/${folderUid}/profile/${customer.uid}`; + const url = `https://lecoffreio.4nkweb.com/client-dashboard/${folderUid}/profile/${customer.uid}`; alert(url); }, [customer.uid, folderUid]);