diff --git a/web/app/routes/logbook.dashboard/route.tsx b/web/app/routes/logbook.dashboard/route.tsx
index 6cefbee..96f0591 100644
--- a/web/app/routes/logbook.dashboard/route.tsx
+++ b/web/app/routes/logbook.dashboard/route.tsx
@@ -2,7 +2,15 @@ import CollapsibleFieldset from "@/ui/display/collapsible-fieldset";
import { VerticalLogItem } from "@/ui/display/log-item";
import ErrorDisplay from "@/ui/error-display";
import { useApi } from "@/util/api";
-import { Center, Group, Loader, Container, Stack, Title } from "@mantine/core";
+import {
+ Center,
+ Text,
+ Group,
+ Loader,
+ Container,
+ Stack,
+ Title,
+} from "@mantine/core";
import { randomId } from "@mantine/hooks";
import { useQuery } from "@tanstack/react-query";
import { useEffect, useState } from "react";
@@ -69,19 +77,6 @@ export default function Dashboard() {
/>
-
-
- {totalsData?.by_class?.map((total: object[]) => (
- <>
-
- >
- ))}
-
-
+
+
+ {totalsData?.by_class?.map((category) => (
+
+
+ {category.aircraft_category}
+
+
+ {category.classes.map((total) => (
+ <>
+
+ >
+ ))}
+
+
+ ))}
+
+
)}