Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto committed Sep 10, 2024
1 parent a33b84f commit ea62d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog-web/src/posthog-web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class PostHog extends PostHogCore {
}

_getWindow(): Window | undefined {
const _window: Window | undefined = (typeof window !== 'undefined') ? window : undefined
const _window: Window | undefined = typeof window !== 'undefined' ? window : undefined
return _window
}

Expand Down

0 comments on commit ea62d80

Please sign in to comment.