fixing lint config

This commit is contained in:
2025-07-23 09:29:19 -06:00
parent c95c40f9e7
commit d5a40e52d9
19 changed files with 32 additions and 48 deletions

View File

@@ -31,7 +31,7 @@ export const AddExistingCourseToGlobalSettings = () => {
);
};
const ExistingCourseForm: FC<{}> = () => {
const ExistingCourseForm: FC<object> = () => {
const [path, setPath] = useState("./");
const [name, setName] = useState("");
const nameInputRef = useRef<HTMLInputElement>(null);