polish(driver-pwa): error states, typed catch, drop dead avatar, terminal poll

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
2026-06-18 19:59:38 +10:00
co-authored by claude-flow
parent 0fba967cd8
commit 15d7f34689
6 changed files with 30 additions and 13 deletions
@@ -1,12 +1,7 @@
export function AppHeader({ initials }: { initials?: string }) {
export function AppHeader() {
return (
<header className="flex items-center justify-between mb-4">
<header className="mb-4">
<span className="text-sm font-bold">Премиум Водитель</span>
{initials && (
<span className="w-7 h-7 rounded-full bg-ink text-cream text-[10px] font-bold flex items-center justify-center">
{initials}
</span>
)}
</header>
);
}