From fb76b20d6e80579c8dd7643d96cbd643b66fbc7c Mon Sep 17 00:00:00 2001 From: Kevin Yu Date: Sun, 25 Aug 2024 15:28:51 -0400 Subject: [PATCH] Fix team invite link --- app/profile/TeamInvite.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/profile/TeamInvite.tsx b/app/profile/TeamInvite.tsx index ce68f2c..564940e 100644 --- a/app/profile/TeamInvite.tsx +++ b/app/profile/TeamInvite.tsx @@ -5,7 +5,7 @@ import { BsChevronUp } from 'react-icons/bs'; export default function TeamInvite(props: { token: string }) { - const url = `https://b01lersc.tf/login?token=${encodeURIComponent(props.token)}`; + const url = `https://internal.b01lersc.tf/login?token=${encodeURIComponent(props.token)}`; function copy() { void navigator.clipboard.writeText(url);