fix: ???? what was i doing

DONT MAKE ME PUSH TO PROD AGAIN WHILE RUNNING LITTLE SLEEP IM SORRY NULL
This commit is contained in:
JovannMC 2025-05-29 14:23:43 +03:00
parent 00de1b1855
commit c04507d1ee
No known key found for this signature in database
1 changed files with 4 additions and 8 deletions

View File

@ -30,20 +30,16 @@ export const categories: Categories = {
categories.audio.formats =
converters
.find((c) => c.name === "ffmpeg")
?.formatStrings((f) => f.toSupported)
.filter((f) => f !== "mp3") || [];
?.formatStrings((f) => f.toSupported) || [];
categories.video.formats =
converters
.find((c) => c.name === "vertd")
?.formatStrings((f) => f.toSupported)
.filter((f) => f !== "mp4") || [];
?.formatStrings((f) => f.toSupported) || [];
categories.image.formats =
converters
.find((c) => c.name === "libvips")
?.formatStrings((f) => f.toSupported)
.filter((f) => f !== ".gif") || [];
?.formatStrings((f) => f.toSupported) || [];
categories.docs.formats =
converters
.find((c) => c.name === "pandoc")
?.formatStrings((f) => f.toSupported)
.filter((f) => f !== ".pdf") || [];
?.formatStrings((f) => f.toSupported) || [];