fmt(js): npm run fix on merge (#74740)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot] 2026-07-30 09:42:51 +00:00 committed by GitHub
parent c581ad402e
commit 11089899fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -135,7 +135,10 @@ export function ModelVisibilityDialog({
size="0.625rem"
/>
</button>
<Checkbox checked={checkState} onCheckedChange={next => setProviderVisible(provider, next !== false)} />
<Checkbox
checked={checkState}
onCheckedChange={next => setProviderVisible(provider, next !== false)}
/>
</div>
{!collapsed &&
models.map(family => {

View file

@ -960,7 +960,10 @@ export function editLearningNode(id: string, content: string): Promise<{ message
})
}
export function setSkillEnabled(name: string, enabled: boolean): Promise<{ ok: boolean; name: string; enabled: boolean }> {
export function setSkillEnabled(
name: string,
enabled: boolean
): Promise<{ ok: boolean; name: string; enabled: boolean }> {
return window.hermesDesktop.api<{ ok: boolean; name: string; enabled: boolean }>({
...profileScoped(),
path: '/api/skills/toggle',