From 69a3836f138cffb3fa52449b0af5fd00da5c816e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20Jurmanovi=C4=87?= Date: Tue, 14 Oct 2025 00:23:43 +0200 Subject: [PATCH] fix wrong type --- src/components/statistics/RecentSessions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/statistics/RecentSessions.tsx b/src/components/statistics/RecentSessions.tsx index 62caa54..a6cd72c 100644 --- a/src/components/statistics/RecentSessions.tsx +++ b/src/components/statistics/RecentSessions.tsx @@ -1,5 +1,5 @@ interface RecentSession { - id: number; + id: string; date: string; type: string; track: string;