Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion frontend/src/pages/WorkbenchPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,10 @@ export function WorkbenchPage() {
<CardDescription>{t('errorState.description')}</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<p className="text-sm text-destructive">
{/* break-all: these messages embed presigned storage URLs, which are one
long unbroken token. Without it the card pushes the page wider than the
viewport — 842px inside a 768px tablet viewport, measured. */}
<p className="break-all text-sm text-destructive">
{error instanceof Error ? error.message : t('errorState.unknownError')}
</p>
<Button asChild variant="outline" size="sm" className="w-full justify-center gap-2">
Expand Down
Loading