diff options
| author | Johann150 <johann.galle@protonmail.com> | 2022-06-10 07:36:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-10 14:36:55 +0900 |
| commit | 5e29528ad4d75174b4a8ebd462f0ff830c5b1c43 (patch) | |
| tree | 72a1d0a6532bf5b0c74f289f2dc772b0f8090cfa /packages/client/src/scripts/hpml | |
| parent | enhance(federation): use ActivityPub defined property in favour of proprietar... (diff) | |
| download | sharkey-5e29528ad4d75174b4a8ebd462f0ff830c5b1c43.tar.gz sharkey-5e29528ad4d75174b4a8ebd462f0ff830c5b1c43.tar.bz2 sharkey-5e29528ad4d75174b4a8ebd462f0ff830c5b1c43.zip | |
chore: fix some lints automatically (#8788)
* chore: fix some lints automatically
Fixed lints that were automatically fixable with `eslint --fix`.
* fix type
* workaround for empty interface lint
Diffstat (limited to 'packages/client/src/scripts/hpml')
| -rw-r--r-- | packages/client/src/scripts/hpml/evaluator.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/scripts/hpml/evaluator.ts b/packages/client/src/scripts/hpml/evaluator.ts index 0469a31cbb..8106687b61 100644 --- a/packages/client/src/scripts/hpml/evaluator.ts +++ b/packages/client/src/scripts/hpml/evaluator.ts @@ -36,7 +36,7 @@ export class Hpml { if (this.opts.enableAiScript) { this.aiscript = markRaw(new AiScript({ ...createAiScriptEnv({ storageKey: 'pages:' + this.page.id - }), ...initAiLib(this)}, { + }), ...initAiLib(this) }, { in: (q) => { return new Promise(ok => { os.inputText({ |