diff --git a/src/hooks.client.ts b/src/hooks.client.ts
new file mode 100644
index 0000000000..2345ffb2ce
--- /dev/null
+++ b/src/hooks.client.ts
@@ -0,0 +1,13 @@
+import { AppwriteException } from '@appwrite.io/console';
+import type { HandleClientError } from '@sveltejs/kit';
+
+export const handleError: HandleClientError = async ({ error, message, status }) => {
+ if (error instanceof AppwriteException && error.code === 0) {
+ status = undefined;
+ message = error.message;
+ }
+ return {
+ message,
+ status
+ };
+};
diff --git a/src/lib/components/filters/content.svelte b/src/lib/components/filters/content.svelte
index 450aa63756..023ed61ff9 100644
--- a/src/lib/components/filters/content.svelte
+++ b/src/lib/components/filters/content.svelte
@@ -134,7 +134,7 @@
bind:value={operatorKey} />
{#if column && operator && !operator?.hideInput}
-
+
{#if column.type === 'integer' || column.type === 'double'}
{:else if column.type === 'boolean'}
@@ -150,7 +150,7 @@
{:else}
{/if}
-
+
{/if}