From c268eb564dbe7e612b9303209302f98cbc54ca5a Mon Sep 17 00:00:00 2001 From: KoloMl Date: Sun, 21 Jun 2026 21:54:20 +0400 Subject: [PATCH] Show warning for profiles when user is not logged in --- src/routes/features/profiles/+page.svelte | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/routes/features/profiles/+page.svelte b/src/routes/features/profiles/+page.svelte index 5841977..e8d71c4 100644 --- a/src/routes/features/profiles/+page.svelte +++ b/src/routes/features/profiles/+page.svelte @@ -5,6 +5,8 @@ import { activeTaggingProfile, taggingProfiles } from "$stores/entities/tagging-profiles"; import TaggingProfile from "$entities/TaggingProfile"; import { popupTitle } from "$stores/popup"; + import { user } from "$stores/preferences/user"; + import Notice from "$components/ui/Notice.svelte"; $popupTitle = 'Tagging Profiles'; @@ -28,6 +30,18 @@ Back Create New + +{#if $user?.isAuthorized === false} + +
+
+ + Tagging profiles will only work when you're signed in! +

+ Unauthorized users have to solve the captcha before sending any submissions to the site. +
+{/if} + {#if profiles.length}
{/if}