refactor: removed "use client" from some components

This commit is contained in:
etiennecollin
2025-08-19 04:01:07 -04:00
parent 88bfa137e3
commit 4b1c030268
3 changed files with 0 additions and 6 deletions

View File

@@ -1,5 +1,3 @@
"use client";
import Modal from "@/components/modals/Modal";
import VoucherCode from "@/components/utils/VoucherCode";
import { Voucher } from "@/types/voucher";

View File

@@ -1,5 +1,3 @@
"use client";
import { useGlobal } from "@/contexts/GlobalContext";
export type Theme = "system" | "light" | "dark";

View File

@@ -1,5 +1,3 @@
"use client";
import { copyText } from "@/utils/clipboard";
import { formatCode } from "@/utils/format";
import { notify } from "@/utils/notifications";