Commit 26a4c2b
authored
refactor: remove colon from Deprecated auto models prefix (#1062)
## Summary
- Remove the colon from the "Deprecated: " prefix on auto model names,
changing it to "Deprecated " for cleaner display.
- Updated the source logic in `src/lib/kilo-auto-model.ts` and the
corresponding approval test snapshot in
`src/tests/openrouter-models-sorting.approved.json`.
## Verification
- [x] Grepped the entire codebase for `Deprecated: ` — confirmed only an
unrelated code comment in `packages/db/src/schema.ts` remains (not an
auto model name).
- [x] Typecheck (`pnpm typecheck`) could not run due to missing `tsgo`
binary in the environment; change is a string literal only, no type
impact.
## Visual Changes
N/A
## Reviewer Notes
Straightforward string change — no logic or type changes. The only
remaining `Deprecated: ` in the codebase is a code comment in
`packages/db/src/schema.ts:1077` about a deprecated balance field, which
is unrelated.2 files changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
181 | 181 | | |
182 | 182 | | |
183 | 183 | | |
184 | | - | |
| 184 | + | |
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
765 | 765 | | |
766 | 766 | | |
767 | 767 | | |
768 | | - | |
| 768 | + | |
769 | 769 | | |
770 | 770 | | |
771 | 771 | | |
| |||
806 | 806 | | |
807 | 807 | | |
808 | 808 | | |
809 | | - | |
| 809 | + | |
810 | 810 | | |
811 | 811 | | |
812 | 812 | | |
| |||
851 | 851 | | |
852 | 852 | | |
853 | 853 | | |
854 | | - | |
| 854 | + | |
855 | 855 | | |
856 | 856 | | |
857 | 857 | | |
| |||
0 commit comments