feat(ui): copy button

This commit is contained in:
Pihkaal
2024-09-30 21:40:37 +02:00
parent 85a83a8e5e
commit f1a5cd9bc0
2 changed files with 34 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ import { z } from "zod";
export const LOGOS = ["session", "instagram"] as const;
export const IMAGE_FORMATS = ["jpeg", "png", "webp"] as const;
export const IMAGE_FORMATS = ["png", "jpeg", "webp"] as const;
export type ImageFormat = (typeof IMAGE_FORMATS)[number];