"sgl-kernel/csrc/vscode:/vscode.git/clone" did not exist on "c04a8a820bd45248ed71f677bda43cd977a137e8"
Commit bc5e39d3 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

chore: format

parent 6cd47a3c
......@@ -21,7 +21,9 @@
let filteredModels = [];
$: filteredModels = $models
.filter((p) => p.name.toLowerCase().includes(prompt.toLowerCase().split(' ')?.at(0)?.substring(1) ?? ''))
.filter((p) =>
p.name.toLowerCase().includes(prompt.toLowerCase().split(' ')?.at(0)?.substring(1) ?? '')
)
.sort((a, b) => a.name.localeCompare(b.name));
$: if (prompt) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment