From 17dc70195835c98f52531f81bf5e7eae55856d80 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Wed, 28 May 2025 07:23:05 +0200 Subject: [PATCH] style: Fix quotes and formatting in multiple files --- components.json | 2 +- src/app/globals.css | 2 +- src/lib/utils.ts | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/components.json b/components.json index ffe928f..3289f23 100644 --- a/components.json +++ b/components.json @@ -18,4 +18,4 @@ "hooks": "@/hooks" }, "iconLibrary": "lucide" -} \ No newline at end of file +} diff --git a/src/app/globals.css b/src/app/globals.css index bf4bbc3..31ec2d7 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,5 +1,5 @@ @import 'tailwindcss'; -@import "tw-animate-css"; +@import 'tw-animate-css'; @custom-variant dark (&:is(.dark *)); diff --git a/src/lib/utils.ts b/src/lib/utils.ts index bd0c391..9ad0df4 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -1,6 +1,6 @@ -import { clsx, type ClassValue } from "clsx" -import { twMerge } from "tailwind-merge" +import { type ClassValue, clsx } from 'clsx'; +import { twMerge } from 'tailwind-merge'; export function cn(...inputs: ClassValue[]) { - return twMerge(clsx(inputs)) + return twMerge(clsx(inputs)); }