diff options
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/settings/+page.svelte | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 3d8aee18..f61b236b 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -34,8 +34,7 @@ Please log in to modify settings. {:else} <Category title="RSS Feeds" id="feeds"> - <a - href={'#'} + <button on:click={() => navigator.clipboard.writeText( `https://${ @@ -45,8 +44,9 @@ }` )} > - Click to copy AniList notifications RSS feed URL and token - </a> + Copy to clipboard + </button> + Your AniList notifications RSS feed URL <SettingHint lineBreak>Do not share this link with <b>anyone</b>!</SettingHint> </Category> <Category title="Display"><Display /></Category> |