Update HistoryTable component to improve user feedback for empty history state

- Modified the message displayed when there are no voice generations to be more concise and user-friendly.
- Adjusted the styling of the empty state message for better visual appeal.
This commit is contained in:
Jamie Pine
2026-01-26 01:17:59 -08:00
parent 8058360744
commit 85935c1bbb
+2 -2
View File
@@ -165,8 +165,8 @@ export function HistoryTable() {
</div> */}
{history.length === 0 ? (
<div className="text-center py-12 px-5 border-2 border-dashed border-gray-200 rounded-md text-muted-foreground flex-1 flex items-center justify-center">
No generation history yet. Generate your first audio to see it here.
<div className="text-center py-12 px-5 border-2 border-dashed mb-5 border-muted rounded-md text-muted-foreground flex-1 flex items-center justify-center">
No voice generations, yet...
</div>
) : (
<>