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:
parent
f496dfd59c
commit
f98d8d2e39
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue