Fix: Update import path in ScheduleDetailPage to use path alias

This commit is contained in:
Stephanos A.
2026-06-02 15:04:38 +03:00
parent 8c605d31f5
commit 4ba6006331

View File

@@ -1,6 +1,6 @@
import { useParams } from "react-router-dom";
import { useSchedule } from "../../hooks/useSchedules";
import { useSchedule } from "@/hooks/useSchedules";
const ScheduleDetailPage = () => {
const { id } = useParams<{ id: string }>();