fix: add missing newlines at the end of JSON files; clean up formatting in page components
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 17m4s
Workflow / ⚫️ Test (push) Has been skipped

This commit is contained in:
T. Zehetbauer
2026-04-02 11:02:58 +02:00
parent b26e5aaafa
commit c6d564836f
56 changed files with 471 additions and 381 deletions

View File

@@ -179,13 +179,17 @@ export function PortalLinkedAccounts({ slug }: { slug: string }) {
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{t('linkedAccounts.title')}</AlertDialogTitle>
<AlertDialogTitle>
{t('linkedAccounts.title')}
</AlertDialogTitle>
<AlertDialogDescription>
{t('linkedAccounts.disconnectDesc')}
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>{t('linkedAccounts.cancel')}</AlertDialogCancel>
<AlertDialogCancel>
{t('linkedAccounts.cancel')}
</AlertDialogCancel>
<AlertDialogAction
onClick={() => handleUnlink(identity)}
className="bg-destructive text-destructive-foreground hover:bg-destructive/90"

View File

@@ -3,13 +3,7 @@ import { redirect } from 'next/navigation';
import { createClient } from '@supabase/supabase-js';
import {
UserCircle,
Mail,
MapPin,
Shield,
Link2,
} from 'lucide-react';
import { UserCircle, Mail, MapPin, Shield, Link2 } from 'lucide-react';
import { getTranslations } from 'next-intl/server';
import { formatDate } from '@kit/shared/dates';