Browse Source

Added missing import

pull/5489/head
Dean 4 years ago
parent
commit
6ba1bff00f
  1. 4
      packages/builder/src/analytics/index.js

4
packages/builder/src/analytics/index.js

@ -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

Loading…
Cancel
Save