fix all eslint errors

This commit is contained in:
2026-02-15 11:25:15 +01:00
parent a7b83da149
commit 11b3a926d2
24 changed files with 314 additions and 233 deletions

View File

@@ -1,11 +1,11 @@
import { Flex, Text } from "@mantine/core";
import { getForms } from "@/services/api";
import { useGetForms } from "@/services/api";
import { FormCard } from "@/components/Forms/Card";
import type { Form } from "@/services/resources/forms";
import { t } from "@/config/i18n";
export function Home() {
const { data: allForms } = getForms();
const { data: allForms } = useGetForms();
return (
<Flex gap="md" wrap="wrap" justify="center">