mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
fix: fix invitation register url
This commit is contained in:
parent
143846c48a
commit
3a9eb82fdf
1 changed files with 1 additions and 1 deletions
|
|
@ -388,7 +388,7 @@ const data = await $dropFetch<Array<SerializeObject<Invitation>>>(
|
|||
const invitations = ref(data ?? []);
|
||||
|
||||
const generateInvitationUrl = (id: string) =>
|
||||
`${window.location.protocol}//${window.location.host}/register?id=${id}`;
|
||||
`${window.location.protocol}//${window.location.host}/auth/register?id=${id}`;
|
||||
const invitationUrls = ref<undefined | Array<string>>();
|
||||
onMounted(() => {
|
||||
invitationUrls.value = invitations.value.map((invitation) =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue