remove supabase_wizard from oauth connects

This commit is contained in:
Ruben Fiszel
2024-05-27 09:47:55 +02:00
parent e35d8f1459
commit bf73e4e9ed
@@ -98,7 +98,7 @@
async function loadConnects() {
if (!connects) {
connects = await OauthService.listOauthConnects()
connects = (await OauthService.listOauthConnects()).filter((x) => x != 'supabase_wizard')
}
}
@@ -403,7 +403,7 @@
<div class="grid sm:grid-cols-2 md:grid-cols-3 gap-x-2 gap-y-1 items-center mb-2">
{#if filteredConnectsManual}
{#each filteredConnectsManual as [key, _]}
{#if !nativeLanguagesCategory.includes(key) && key != 'supabase_wizard'}
{#if !nativeLanguagesCategory.includes(key)}
<!-- Exclude specific items -->
<Button
size="sm"