diff --git a/src/app/projects/[projectId]/components/ProjectPage.tsx b/src/app/projects/[projectId]/components/ProjectPage.tsx
index 0385bb7..b74723b 100644
--- a/src/app/projects/[projectId]/components/ProjectPage.tsx
+++ b/src/app/projects/[projectId]/components/ProjectPage.tsx
@@ -13,9 +13,9 @@ import {
CardTitle,
} from "@/components/ui/card";
import { Checkbox } from "@/components/ui/checkbox";
-import { hideSessionsWithoutUserMessagesAtom } from "../store/filterAtoms";
import { useProject } from "../hooks/useProject";
import { firstCommandToTitle } from "../services/firstCommandToTitle";
+import { hideSessionsWithoutUserMessagesAtom } from "../store/filterAtoms";
export const ProjectPageContent = ({ projectId }: { projectId: string }) => {
const checkboxId = useId();
@@ -123,7 +123,7 @@ export const ProjectPageContent = ({ projectId }: { projectId: string }) => {
Last modified:{" "}
{session.meta.lastModifiedAt
? new Date(
- session.meta.lastModifiedAt
+ session.meta.lastModifiedAt,
).toLocaleDateString()
: ""}
@@ -135,7 +135,7 @@ export const ProjectPageContent = ({ projectId }: { projectId: string }) => {