From ddf35ab4c30674ed3496cceda1bc922e0a6f0ea0 Mon Sep 17 00:00:00 2001 From: Georgi-S <106542204+Georgi-S@users.noreply.github.com> Date: Thu, 25 Apr 2024 17:08:57 +0200 Subject: [PATCH] fix url --- src/components/forms/qrCode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/forms/qrCode.tsx b/src/components/forms/qrCode.tsx index c8ecf42..d6b1f50 100644 --- a/src/components/forms/qrCode.tsx +++ b/src/components/forms/qrCode.tsx @@ -24,7 +24,7 @@ type Props = { export function QrCodeDialog({ surveyId, children }: Props) { const { data: session } = useSession(); - const url = `http://192.168.2.179:3000/survey/${surveyId}`; + const url = `/survey/${surveyId}`; // const router = useRouter(); return (