Skip to content

Commit d9f6761

Browse files
ersinkocclaude
andcommitted
🎨 style: format PomodoroPage.tsx
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fd1e561 commit d9f6761

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

packages/ui/src/pages/PomodoroPage.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,12 @@ export function PomodoroPage() {
7070
try {
7171
const [sessionRes, statsRes] = await Promise.all([
7272
pomodoroApi.getSession().catch(() => ({ session: null })),
73-
pomodoroApi
74-
.getStats()
75-
.catch(() => ({
76-
completedSessions: 0,
77-
totalWorkMinutes: 0,
78-
totalBreakMinutes: 0,
79-
interruptions: 0,
80-
})),
73+
pomodoroApi.getStats().catch(() => ({
74+
completedSessions: 0,
75+
totalWorkMinutes: 0,
76+
totalBreakMinutes: 0,
77+
interruptions: 0,
78+
})),
8179
]);
8280
setActiveSession(sessionRes.session);
8381
setStats(statsRes as PomodoroStats);

0 commit comments

Comments
 (0)