fix project settings
This commit is contained in:
@ -5,7 +5,7 @@ export type listmonkData = {
|
||||
name: string;
|
||||
status: "enabled" | "blocklisted";
|
||||
lists: number[];
|
||||
attribs: {};
|
||||
attribs: Record<string, string>;
|
||||
};
|
||||
|
||||
async function listmonk(data: listmonkData): Promise<string> {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { clsx, type ClassValue } from "clsx"
|
||||
import { twMerge } from "tailwind-merge"
|
||||
import { clsx, type ClassValue } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs))
|
||||
return twMerge(clsx(inputs));
|
||||
}
|
||||
|
Reference in New Issue
Block a user