1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +12:00

Added missing import

This commit is contained in:
Dean 2022-04-20 11:31:54 +01:00
parent 1eff790fe8
commit 5e21757ef1

View file

@ -2,7 +2,7 @@ import { API } from "api"
import PosthogClient from "./PosthogClient"
import IntercomClient from "./IntercomClient"
import SentryClient from "./SentryClient"
import { Events } from "./constants"
import { Events, EventSource } from "./constants"
const posthog = new PosthogClient(
process.env.POSTHOG_TOKEN,
@ -57,5 +57,5 @@ class AnalyticsHub {
const analytics = new AnalyticsHub()
export { Events }
export { Events, EventSource }
export default analytics