diff --git a/platforms/pictique/client/src/lib/ui/Button/Button.svelte b/platforms/pictique/client/src/lib/ui/Button/Button.svelte index 3c9658aa8..9a674a878 100644 --- a/platforms/pictique/client/src/lib/ui/Button/Button.svelte +++ b/platforms/pictique/client/src/lib/ui/Button/Button.svelte @@ -27,6 +27,7 @@ const handleClick = async () => { if (typeof callback !== 'function') return; + if (disabled) return; if (blockingClick) isSubmitting = true; try { diff --git a/platforms/pictique/client/src/routes/(protected)/post/+page.svelte b/platforms/pictique/client/src/routes/(protected)/post/+page.svelte index 56cf42ec5..87ae4958c 100644 --- a/platforms/pictique/client/src/routes/(protected)/post/+page.svelte +++ b/platforms/pictique/client/src/routes/(protected)/post/+page.svelte @@ -1,5 +1,5 @@