Merge branch 'stage' into feat/pin_message

pull/1154/head
teamabron 2025-01-26 16:18:33 +03:30 committed by GitHub
commit 259bc242a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ export default function CreateInvite({
) : ( ) : (
<Invite> <Invite>
<Text id="app.special.modals.prompt.create_invite_created" /> <Text id="app.special.modals.prompt.create_invite_created" />
<code style="font-size:14px">{url}</code> <code>{code}</code>
</Invite> </Invite>
), ),
}, },
@ -83,7 +83,7 @@ export default function CreateInvite({
children: <Text id="app.context_menu.copy_link" />, children: <Text id="app.context_menu.copy_link" />,
onClick: () => onClick: () =>
modalController.writeText( modalController.writeText(
`${url}` IS_REVOLT ? `https://rvlt.gg/${code}` : `${window.location.host}/invite/${code}`
), ),
}, },
]} ]}