We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b33704 commit 5c9c52eCopy full SHA for 5c9c52e
src/components/group/NoMembers.tsx
@@ -9,7 +9,7 @@ const NoMembers: React.FC<{ group: Group & { groupUsers: Array<GroupUser> } }> =
9
const [isCopied, setIsCopied] = React.useState(false);
10
11
async function copyToClipboard() {
12
- const inviteLink = `${window.location.origin}/groups/join-group?groupId=${group.publicId}`;
+ const inviteLink = `${window.location.origin}/join-group?groupId=${group.publicId}`;
13
await navigator.clipboard.writeText(inviteLink);
14
setIsCopied(true);
15
setTimeout(() => {
0 commit comments