From ee55d137ad4f275a564402f013aff506e59612e9 Mon Sep 17 00:00:00 2001 From: Timothy Stewart Date: Sun, 17 Oct 2021 21:42:56 -0500 Subject: [PATCH] fix(ENV): Fix runtime env for BUTTON_ORDER --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index e9be263..f9e52d0 100644 --- a/src/config.js +++ b/src/config.js @@ -208,5 +208,5 @@ export const runtimeConfig = : process.env.RAZZLE_UMAMI_APP_URL, BUTTON_ORDER: nodeIsProduction ? process.env.BUTTON_ORDER - : process.env.BUTTON_ORDER, + : process.env.RAZZLE_BUTTON_ORDER, };