fix: copy invite link for HTTPS has deplicate origin (#3877)
This commit is contained in:
parent
7d711135bc
commit
2e454c770b
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ const InvitationLink = ({
|
|||
const selector = useRef(`invite-link-${randomString(4)}`)
|
||||
|
||||
const copyHandle = useCallback(() => {
|
||||
copy(`${!value.url.includes('http://') ? window.location.origin : ''}${value.url}`)
|
||||
copy(`${!value.url.startsWith('http') ? window.location.origin : ''}${value.url}`)
|
||||
setIsCopied(true)
|
||||
}, [value])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue