diff --git a/src/routes/(console)/project-[region]-[project]/auth/(providers)/mainOAuth.svelte b/src/routes/(console)/project-[region]-[project]/auth/(providers)/mainOAuth.svelte
index 365782e6b4..cf67fd335b 100644
--- a/src/routes/(console)/project-[region]-[project]/auth/(providers)/mainOAuth.svelte
+++ b/src/routes/(console)/project-[region]-[project]/auth/(providers)/mainOAuth.svelte
@@ -5,7 +5,7 @@
import { onMount } from 'svelte';
import { updateOAuth } from '../updateOAuth';
import type { Models } from '@appwrite.io/console';
- import { oAuthProviders, type Provider } from '$lib/stores/oauth-providers';
+ import { oAuthProviders, Provider } from '$lib/stores/oauth-providers';
import { Link, Alert } from '@appwrite.io/pink-svelte';
import { getApiEndpoint } from '$lib/stores/sdk';
@@ -52,7 +52,7 @@
{#snippet header(root)}
{#each $tableViewColumns as { id, title } (id)}
- {title}
+ {@const safeId = id === 'actions' ? '__actions' : id}
+ {title}
{/each}
{/snippet}
@@ -69,7 +70,8 @@
id={entity.$id}
href={buildEntityRoute(page, entitySingular, entity.$id)}>
{#each $tableViewColumns as column}
-
+ {@const safeId = column.id === 'actions' ? '__actions' : column.id}
+
{#if column.id === '$id'}
{#key $tableViewColumns}
{entity.$id}