fix(lint): resolve eslint warnings, type errors and clean unused code

This commit is contained in:
mstfyldz
2026-08-23 01:51:51 +03:00
parent b312bc5593
commit 99951328ed
9 changed files with 31 additions and 81 deletions
+2 -1
View File
@@ -5,8 +5,9 @@ import Image from "next/image";
import { m, AnimatePresence } from "framer-motion";
import { X, ZoomIn } from "lucide-react";
import { Badge } from "@/app/components/ui/badge";
import type { Dictionary } from "@/types/dictionary";
export default function GaleriClient({ lang, dict }: { lang: string; dict: any }) {
export default function GaleriClient({ dict }: { lang?: string; dict: Dictionary }) {
const t = dict.gallery;
const CATEGORIES = [t.all, t.venues, "Beach", "Bungalov", "Kite Surf", "Hotel"] as const;