Skip to content

Commit 783ed00

Browse files
committed
style(billing): format the auth harness in the monitor test
Generated-By: PostHog Code Task-Id: 1039ea23-9930-44e2-9888-b05cf8b129ec
1 parent a92a156 commit 783ed00

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/core/src/usage/usage-monitor.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ type GatewaySlice = Pick<UsageHost, "fetchUsage">;
5454
let emitAuthState: (currentOrgId: string | null) => void = () => {};
5555

5656
function makeAuthService(): AuthService {
57-
const listeners = new Set<
58-
(state: { currentOrgId: string | null }) => void
59-
>();
57+
const listeners = new Set<(state: { currentOrgId: string | null }) => void>();
6058
emitAuthState = (currentOrgId) => {
6159
for (const listener of [...listeners]) {
6260
listener({ currentOrgId });

0 commit comments

Comments
 (0)