Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arc-2308 add backend ffs #183

Merged
merged 12 commits into from
Oct 9, 2023
Prev Previous commit
Next Next commit
remove exports
  • Loading branch information
rachellerathbone committed Oct 2, 2023

Verified

This commit was signed with the committer’s verified signature.
wezm Wesley Moore
commit 3e3c976896f7e812c71afe7892d12fa1b3f78417
4 changes: 1 addition & 3 deletions app/src/config/feature-flags.ts
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ interface EnvironmentData {
_summary: any;
}

export interface FeatureFlag {
interface FeatureFlag {
name: string;
kind: string;
description: string;
@@ -83,8 +83,6 @@ export interface FeatureFlag {
};
}

export default FeatureFlag;

export const LAUNCH_DARKLY_URL = `https://app.launchdarkly.com`;
const BASE_URL = `${LAUNCH_DARKLY_URL}/api/v2/flags/${envVars.LAUNCHDARKLY_APP_NAME}`;