Fix the setEffort arrow shorthand lint finding

This commit is contained in:
imccyu
2026-07-27 13:10:32 +08:00
parent 72717b7b78
commit 3025a324cd

View File

@@ -114,7 +114,7 @@ export function apply(ctx: ClientContext): void {
directory: directory.store,
load: () => { directory.load().catch(() => { /* surfaced on the store */ }) },
select: (target: ModelTarget) => directory.select(target).then(() => true, () => false),
setEffort: effort => directory.setEffort(effort),
setEffort: (effort) => { directory.setEffort(effort) },
}
},
}, ModelSelect), 'ui-model: composer model seat registration')