diff --git a/src/components/features/ProfileView.svelte b/src/components/features/ProfileView.svelte index 138e8a9..d39f965 100644 --- a/src/components/features/ProfileView.svelte +++ b/src/components/features/ProfileView.svelte @@ -7,7 +7,7 @@ let { profile }: ProfileViewProps = $props(); - const sortedTagsList = profile.settings.tags.sort((a, b) => a.localeCompare(b)); + const sortedTagsList = $derived(profile.settings.tags.sort((a, b) => a.localeCompare(b)));