From 0ce4dc12bd47a7f767ba89123046d02522761764 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Thu, 27 Feb 2025 11:22:04 +0100 Subject: [PATCH] Fix: indenting on cn utils func --- frontend/src/lib/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts index bd0c391..aa65f25 100644 --- a/frontend/src/lib/utils.ts +++ b/frontend/src/lib/utils.ts @@ -2,5 +2,5 @@ import { clsx, type ClassValue } from "clsx" import { twMerge } from "tailwind-merge" export function cn(...inputs: ClassValue[]) { - return twMerge(clsx(inputs)) + return twMerge(clsx(inputs)) }