Skip to content

Commit

Permalink
馃獰 馃悰 Enable segment by default (#22135)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephkmh committed Jan 31, 2023
1 parent e3bb377 commit 0c5fbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-webapp/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AirbyteWebappConfig } from "./types";
export const config: AirbyteWebappConfig = {
segment: {
token: window.SEGMENT_TOKEN ?? process.env.REACT_APP_SEGMENT_TOKEN,
enabled: window.TRACKING_STRATEGY === "segment",
enabled: !window.TRACKING_STRATEGY || window.TRACKING_STRATEGY === "segment",
},
apiUrl: window.API_URL ?? process.env.REACT_APP_API_URL ?? `http://${window.location.hostname}:8001/api`,
connectorBuilderApiUrl:
Expand Down

0 comments on commit 0c5fbd1

Please sign in to comment.