sessions search

This commit is contained in:
2025-06-10 15:14:40 +05:00
parent 538e2b67bc
commit ec6d05f4cf
27 changed files with 203 additions and 66 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import FlashIcon from "./icons/FlashIcon";
import { ISession } from "../types/ISession";
import { Session } from "../types/ISession";
import NewButton from "./NewButton";
import api from "../utils/api";
import { useMutation, useQueryClient } from "@tanstack/react-query";
@@ -12,7 +12,7 @@ function CurrentSessionCard({
session,
index,
}: {
session: ISession;
session: Session;
index: number;
}) {
const { setModal } = useModalStore();