From 455c7ec07624767a932dacd45305a1d8f5a9e75d Mon Sep 17 00:00:00 2001 From: TinsFox Date: Sat, 16 Aug 2025 22:03:47 +0800 Subject: [PATCH] feat: use semantic naming --- src/app/(main)/websites/[websiteId]/sessions/SessionsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(main)/websites/[websiteId]/sessions/SessionsPage.tsx b/src/app/(main)/websites/[websiteId]/sessions/SessionsPage.tsx index d1e125429..76ab1a8ed 100644 --- a/src/app/(main)/websites/[websiteId]/sessions/SessionsPage.tsx +++ b/src/app/(main)/websites/[websiteId]/sessions/SessionsPage.tsx @@ -11,7 +11,7 @@ import SessionsWeekly from './SessionsWeekly'; import { useQueryState } from 'nuqs'; export function SessionsPage({ websiteId }) { - const [tab, setTab] = useQueryState('activity', { defaultValue: 'activity' }); + const [tab, setTab] = useQueryState('tab', { defaultValue: 'activity' }); const { formatMessage, labels } = useMessages();