Browse Source

refac/fix

Timothy Jaeryang Baek 3 months ago
parent
commit
2a98ba0ff8
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/lib/components/chat/ModelSelector/Selector.svelte

+ 1 - 3
src/lib/components/chat/ModelSelector/Selector.svelte

@@ -319,9 +319,7 @@
 						.flatMap((item) => item.model?.tags ?? [])
 						.map((tag) => tag.name.toLowerCase())
 				)
-			)
-				.sort((a, b) => a.localeCompare(b))
-				.map((tag) => capitalizeFirstLetter(tag));
+			).sort((a, b) => a.localeCompare(b));
 		}
 	});