From 2abe1eeb1f14997e9255c7802c4fe7de4ee09d21 Mon Sep 17 00:00:00 2001 From: Jakob Hofer Date: Mon, 3 Mar 2025 22:52:45 +0000 Subject: [PATCH] fix inverted attribution condition --- .../svelte/src/lib/components/Attribution/Attribution.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/svelte/src/lib/components/Attribution/Attribution.svelte b/packages/svelte/src/lib/components/Attribution/Attribution.svelte index 3f83683f..f860950d 100644 --- a/packages/svelte/src/lib/components/Attribution/Attribution.svelte +++ b/packages/svelte/src/lib/components/Attribution/Attribution.svelte @@ -5,7 +5,7 @@ let { proOptions, position = 'bottom-right' }: AttributionProps = $props(); -{#if proOptions?.hideAttribution} +{#if !proOptions?.hideAttribution}