Skip to content

Commit af0a28a

Browse files
committed
fix: use text-base for archive error title to restore heading hierarchy
The typography migration incorrectly set the ArchiveError title to text-sm, making it the same size as the detail text. Changed to text-base to match the parallel error pattern in settings/environments.tsx.
1 parent b6fed40 commit af0a28a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/mobile/src/features/archive/ArchivedThreadsScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function ArchivedThreadRow(props: {
314314
function ArchiveError(props: { readonly message: string; readonly onRetry: () => void }) {
315315
return (
316316
<View className="rounded-[20px] border border-danger-border bg-danger p-4">
317-
<Text className="text-sm font-t3-bold text-danger-foreground">
317+
<Text className="text-base font-t3-bold text-danger-foreground">
318318
Could not load every archive
319319
</Text>
320320
<Text className="mt-1 text-sm leading-[18px] text-foreground-muted">{props.message}</Text>

0 commit comments

Comments
 (0)