From d5ba37226447d55cbec3c742165c7ce6d14f7e65 Mon Sep 17 00:00:00 2001 From: Mashy Date: Thu, 23 Jan 2020 11:19:33 +1000 Subject: [PATCH] Invite link text same as play.jsx --- client/src/events.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/events.jsx b/client/src/events.jsx index 9a0ae91a..72609eb0 100644 --- a/client/src/events.jsx +++ b/client/src/events.jsx @@ -167,7 +167,7 @@ function registerEvents(store) { if (!code) return store.dispatch(actions.setInvite(null)); const link = `${document.location.origin}#join=${code}`; navigator.clipboard.writeText(link).then(() => { - notify('Your invite code was copied to the clipboard.'); + notify('Invite link copied to clipboard.'); }, () => {}); return store.dispatch(actions.setInvite(code));