We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdbd00c commit 89050cbCopy full SHA for 89050cb
src/app/store/config/EnvironmentModel.tsx
@@ -9,7 +9,9 @@ type Environment = "staging" | "production"
9
10
interface EnvironmentOptionDescriptor {
11
readonly description: string
12
- readonly presets: { readonly [k in Environment | "local"]: string }
+ readonly presets: { readonly [k in Environment | "local"]: string } & {
13
+ readonly reviewApp?: string
14
+ }
15
}
16
17
// helper to get good typings and intellisense
@@ -59,6 +61,7 @@ export const environment = defineEnvironmentOptions({
59
61
local: "http://localhost:4000",
60
62
staging: "https://staging.artsy.net",
63
production: "https://www.artsy.net",
64
+ reviewApp: "https://express-checkout-mobile.artsy.net",
65
},
66
67
causalityURL: {
0 commit comments