Skip to content

Commit 89050cb

Browse files
authored
feat: add option for force review app to text express checkout (#11633)
* feat: add option for force review app to text express checkout * update case
1 parent bdbd00c commit 89050cb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/app/store/config/EnvironmentModel.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ type Environment = "staging" | "production"
99

1010
interface EnvironmentOptionDescriptor {
1111
readonly description: string
12-
readonly presets: { readonly [k in Environment | "local"]: string }
12+
readonly presets: { readonly [k in Environment | "local"]: string } & {
13+
readonly reviewApp?: string
14+
}
1315
}
1416

1517
// helper to get good typings and intellisense
@@ -59,6 +61,7 @@ export const environment = defineEnvironmentOptions({
5961
local: "http://localhost:4000",
6062
staging: "https://staging.artsy.net",
6163
production: "https://www.artsy.net",
64+
reviewApp: "https://express-checkout-mobile.artsy.net",
6265
},
6366
},
6467
causalityURL: {

0 commit comments

Comments
 (0)