Fix stale empty state card title in home route

Update 'No Active Leagues' to 'No Leagues' to match the updated
description which is now about membership rather than active seasons.

https://claude.ai/code/session_01E3ugKTfatkEc5TcDGXvHiW
This commit is contained in:
Claude 2026-02-20 18:20:11 +00:00
parent f496dfd59c
commit f98d8d2e39
No known key found for this signature in database

View file

@ -92,7 +92,7 @@ export default function Home({ loaderData }: Route.ComponentProps) {
{leagues.length === 0 ? ( {leagues.length === 0 ? (
<Card> <Card>
<CardHeader> <CardHeader>
<CardTitle>No Active Leagues</CardTitle> <CardTitle>No Leagues</CardTitle>
<CardDescription> <CardDescription>
You aren't a member of any leagues yet You aren't a member of any leagues yet
</CardDescription> </CardDescription>