From 37afdf755e2bf371844e892e640e5526d0aa5c91 Mon Sep 17 00:00:00 2001 From: Ruby Date: Fri, 25 Oct 2024 15:50:15 +0200 Subject: [PATCH] formatting --- backend/src/plugins/Tags/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/plugins/Tags/types.ts b/backend/src/plugins/Tags/types.ts index 9e7e2d58..58abf219 100644 --- a/backend/src/plugins/Tags/types.ts +++ b/backend/src/plugins/Tags/types.ts @@ -6,7 +6,7 @@ import { GuildSavedMessages } from "../../data/GuildSavedMessages.js"; import { GuildTags } from "../../data/GuildTags.js"; import { zEmbedInput } from "../../utils.js"; -const zEmbeds = z.object({embeds: z.array(zEmbedInput)}) +const zEmbeds = z.object({ embeds: z.array(zEmbedInput) }); export const zTag = z.union([z.string(), zEmbeds]); export type TTag = z.infer;