refactor: switch to named debounce import from lodash

This commit is contained in:
2026-02-16 02:48:46 -03:00
parent acbe47e084
commit fbac6b4405
@@ -3,7 +3,7 @@
import { useEffect, useState, useCallback } from "react"; import { useEffect, useState, useCallback } from "react";
import { lmsApi, StudentNote } from "@/lib/api"; import { lmsApi, StudentNote } from "@/lib/api";
import { StickyNote, Save, Loader2, CheckCircle2, AlertCircle } from "lucide-react"; import { StickyNote, Save, Loader2, CheckCircle2, AlertCircle } from "lucide-react";
import debounce from "lodash/debounce"; import { debounce } from "lodash";
interface StudentNotesProps { interface StudentNotesProps {
lessonId: string; lessonId: string;