style(frontend): restore prettier formatting on the Empty-migration pages

`pnpm run prettier` is a required CI step and it exits 1 on these five files at
HEAD while passing on them at 001c6c0, so the branch is currently red. Formatting
only — no logic touched.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Sergey Kozyrenko
2026-07-16 22:53:01 +07:00
co-authored by Claude Opus 4.8
parent 6f21d90904
commit d6af153689
5 changed files with 19 additions and 12 deletions
+1 -3
View File
@@ -595,9 +595,7 @@ function Flows() {
<Loader2 className="text-muted-foreground size-10 animate-spin" />
</EmptyMedia>
<EmptyTitle>Loading flows...</EmptyTitle>
<EmptyDescription>
Please wait while we fetch your conversation flows
</EmptyDescription>
<EmptyDescription>Please wait while we fetch your conversation flows</EmptyDescription>
</EmptyHeader>
</Empty>
</div>
+1 -3
View File
@@ -410,9 +410,7 @@ function Knowledges() {
<Loader2 className="text-muted-foreground size-10 animate-spin" />
</EmptyMedia>
<EmptyTitle>Loading knowledges...</EmptyTitle>
<EmptyDescription>
Please wait while we fetch your knowledge documents
</EmptyDescription>
<EmptyDescription>Please wait while we fetch your knowledge documents</EmptyDescription>
</EmptyHeader>
</Empty>
</div>
@@ -64,9 +64,16 @@ function SettingsAccount() {
</div>
<div className="flex min-w-0 flex-1 flex-col gap-0.5">
<CardTitle className="truncate">{displayName}</CardTitle>
{memberSince && <CardDescription className="truncate">Member since {memberSince}</CardDescription>}
{memberSince && (
<CardDescription className="truncate">Member since {memberSince}</CardDescription>
)}
</div>
<Badge className="shrink-0" variant="secondary">{accountLabel}</Badge>
<Badge
className="shrink-0"
variant="secondary"
>
{accountLabel}
</Badge>
</CardHeader>
</Card>
@@ -24,7 +24,13 @@ import * as z from 'zod';
import type { ApiTokenFragmentFragment } from '@/graphql/types';
import { AppHeader, AppHeaderAction, AppHeaderActions, AppHeaderContent, AppHeaderTitle } from '@/components/layouts/app/app-header';
import {
AppHeader,
AppHeaderAction,
AppHeaderActions,
AppHeaderContent,
AppHeaderTitle,
} from '@/components/layouts/app/app-header';
import ConfirmationDialog from '@/components/shared/confirmation-dialog';
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
import { Badge } from '@/components/ui/badge';
@@ -414,9 +414,7 @@ function SettingsProviders() {
<Loader2 className="text-muted-foreground size-10 animate-spin" />
</EmptyMedia>
<EmptyTitle>Loading providers...</EmptyTitle>
<EmptyDescription>
Please wait while we fetch your provider configurations
</EmptyDescription>
<EmptyDescription>Please wait while we fetch your provider configurations</EmptyDescription>
</EmptyHeader>
</Empty>
</div>