diff --git a/src/lib/components/functional/FormatDropdown.svelte b/src/lib/components/functional/FormatDropdown.svelte index 38bad18..71b9308 100644 --- a/src/lib/components/functional/FormatDropdown.svelte +++ b/src/lib/components/functional/FormatDropdown.svelte @@ -65,7 +65,10 @@ const shouldInclude = (format: string, category: string): boolean => { // if converting from audio to video, dont show gifs - if (categories["audio"]?.formats.includes(from ?? "") && format === ".gif") { + if ( + categories["audio"]?.formats.includes(from ?? "") && + format === ".gif" + ) { return false; } @@ -256,7 +259,9 @@ {disabled} > -
{selected}
@@ -275,7 +280,7 @@ {#if currentCategory} {#each categories[currentCategory].formats as option}{option}