mirror of
https://github.com/vxcontrol/pentagi.git
synced 2026-08-25 12:36:30 +00:00
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:
co-authored by
Claude Opus 4.8
parent
6f21d90904
commit
d6af153689
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user