Fix prod build

This commit is contained in:
Fergal Moran
2024-01-14 19:39:55 +00:00
parent 9d5764f27d
commit 42f66915d5
3 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ const config = {
"@typescript-eslint/array-type": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/consistent-type-imports": [
"warn",
{

View File

@@ -53,7 +53,7 @@
"cmdk": "^0.2.0",
"date-fns": "^3.1.0",
"drizzle-orm": "^0.29.3",
"embla-carousel-react": "^8.0.0-rc19",
"embla--react": "^8.0.0-rc19",
"generate-api-key": "^1.0.2",
"http-status-codes": "^2.3.0",
"leaflet": "^1.9.4",

View File

@@ -4,6 +4,9 @@ import * as React from "react";
import useEmblaCarousel, {
type UseEmblaCarouselType,
} from "embla-carousel-react";
import { cn } from "@/lib/utils";
import { Button } from "./button";
import { ArrowLeft, ArrowRight } from "lucide-react";
type CarouselApi = UseEmblaCarouselType[1];
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;