style: lint

This commit is contained in:
手瓜一十雪
2025-01-13 20:30:57 +08:00
parent a81cdb824e
commit 8f93f63d76
7 changed files with 37 additions and 37 deletions

View File

@@ -20,7 +20,7 @@ export class Fallback<T> {
for (const handler of this.handlers) {
try {
const result = await handler();
let data = await this.checker(result);
const data = await this.checker(result);
if (data) {
return data;
}