From b4ba79f4c685879535674bffe3354ab2d5f6ba6c Mon Sep 17 00:00:00 2001 From: Stephen Rugh Date: Fri, 13 Dec 2024 11:07:37 -0600 Subject: [PATCH] use default sheets and named config files Signed-off-by: Stephen Rugh --- scripts/configs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configs.js b/scripts/configs.js index 6f3869f83b..098a6e46cc 100644 --- a/scripts/configs.js +++ b/scripts/configs.js @@ -31,7 +31,7 @@ export const calcEnvironment = () => { function buildConfigURL(environment) { const env = environment || calcEnvironment(); - let fileName = 'configs.json?sheet=prod'; + let fileName = 'configs.json'; if (env !== 'prod') { fileName = `configs-${env}.json`; }