refactor: edit tailwindcss classes and change code formatting, therefore added .prettierrc file

fix: frontend bug where the passwords won't be checked when the password is changed
This commit is contained in:
2026-07-08 14:56:43 +02:00
parent 9c50c3f300
commit 6be34c93aa
36 changed files with 1280 additions and 1145 deletions
+6 -7
View File
@@ -1,14 +1,14 @@
import { useEffect, useState } from "react";
import {
Typography,
Alert,
Avatar,
Button,
Checkbox,
Chip,
CircularProgress,
Sheet,
Table,
Avatar,
Chip,
Checkbox,
Alert,
Typography,
} from "@mui/joy";
import { useNavigate } from "@tanstack/react-router";
import { useTranslation } from "react-i18next";
@@ -17,8 +17,7 @@ import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import { deleteSelectedProducts, getProducts } from "../utils/api/products";
import { formatDate } from "../utils/uxFncs";
import Cookies from "js-cookie";
import type { ProductRow } from "../misc/interfaces";
import type { AlertInterface } from "../misc/interfaces";
import type { AlertInterface, ProductRow } from "../misc/interfaces";
import type { ApiError } from "../utils/api/apiError";
export const InventoryPage = () => {