From b3600b927ecc5fe3a0c6a72e6e69fe0bb6386d10 Mon Sep 17 00:00:00 2001 From: shubham88fru Date: Sun, 26 Jul 2026 15:30:47 -0700 Subject: [PATCH] fix: fix build issue due to missing lib folder. --- applications/user-feedback/.gitignore | 1 + applications/user-feedback/lib/utils.ts | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 applications/user-feedback/lib/utils.ts diff --git a/applications/user-feedback/.gitignore b/applications/user-feedback/.gitignore index 842ffb3..9265d87 100644 --- a/applications/user-feedback/.gitignore +++ b/applications/user-feedback/.gitignore @@ -9,6 +9,7 @@ !.yarn/plugins !.yarn/releases !.yarn/versions +!lib # testing /coverage diff --git a/applications/user-feedback/lib/utils.ts b/applications/user-feedback/lib/utils.ts new file mode 100644 index 0000000..bd0c391 --- /dev/null +++ b/applications/user-feedback/lib/utils.ts @@ -0,0 +1,6 @@ +import { clsx, type ClassValue } from "clsx" +import { twMerge } from "tailwind-merge" + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)) +}