Skip to content

Commit

Permalink
[nit] linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nan-li committed Sep 14, 2023
1 parent cb8fb20 commit 3bbf06b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events/EventManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default class EventManager {
);
});
} else if (eventName === PERMISSION_CHANGED) {
const typedPayload = payload as {permission: boolean}
const typedPayload = payload as { permission: boolean }

Check failure on line 101 in src/events/EventManager.ts

View workflow job for this annotation

GitHub Actions / build

Insert `;`
handlerArray.forEach((handler) => {
handler(typedPayload.permission);
});
Expand Down

0 comments on commit 3bbf06b

Please sign in to comment.