mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
fix: copy invite link has duplicated origin (#3608)
This commit is contained in:
parent
de3b490f8e
commit
3aa182e26a
|
@ -18,7 +18,7 @@ const InvitationLink = ({
|
||||||
const selector = useRef(`invite-link-${randomString(4)}`)
|
const selector = useRef(`invite-link-${randomString(4)}`)
|
||||||
|
|
||||||
const copyHandle = useCallback(() => {
|
const copyHandle = useCallback(() => {
|
||||||
copy(window.location.origin + value.url)
|
copy(`${!value.url.includes('http://') ? window.location.origin : ''}${value.url}`)
|
||||||
setIsCopied(true)
|
setIsCopied(true)
|
||||||
}, [value])
|
}, [value])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user