diff --git a/src/components/Others/Settings.svelte b/src/components/Others/Settings.svelte index 0d84948..53a85f2 100644 --- a/src/components/Others/Settings.svelte +++ b/src/components/Others/Settings.svelte @@ -96,13 +96,13 @@ showTwitchLinkBtn = !twitchToken || tokenExpireSoon; if (!twitchToken) { - twitchBtnLabel = "Link to Twitch"; + twitchBtnLabel = "Login with Twitch"; } if (tokenExpireSoon) { twitchBtnLabel = "Renew Twitch token" } if (twitchToken) { - twitchBtnLabel = "Already linked" + twitchBtnLabel = "Already logged in" } twitchBtnTitle = twitchToken && tokenExpireInDays > 0 ? `Days left: ${tokenExpireInDays}` : null;