We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2933a83 commit 8cc354bCopy full SHA for 8cc354b
1 file changed
packages/core/src/usage/usage-monitor.test.ts
@@ -54,9 +54,7 @@ type GatewaySlice = Pick<UsageHost, "fetchUsage">;
54
let emitAuthState: (currentOrgId: string | null) => void = () => {};
55
56
function makeAuthService(): AuthService {
57
- const listeners = new Set<
58
- (state: { currentOrgId: string | null }) => void
59
- >();
+ const listeners = new Set<(state: { currentOrgId: string | null }) => void>();
60
emitAuthState = (currentOrgId) => {
61
for (const listener of [...listeners]) {
62
listener({ currentOrgId });
0 commit comments