Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 committed Mar 8, 2024
1 parent 93fcb0c commit 68e3f3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/registries/ContainerRegistry.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ vi.mock('@podman-desktop/api', async () => {
});

beforeEach(() => {
const listeners: ((value: unknown) => {})[] = [];
const eventSubscriber = (listener: (value: unknown) => {}) => {
const listeners: ((value: unknown) => void)[] = [];
const eventSubscriber = (listener: (value: unknown) => void) => {
listeners.push(listener);
};
const fire = (value: unknown) => {
Expand Down

0 comments on commit 68e3f3a

Please sign in to comment.