From e1879f4d8e1683c303555c9a27391890150db8df Mon Sep 17 00:00:00 2001 From: MichaelPesce Date: Mon, 16 Dec 2024 10:53:48 -0600 Subject: [PATCH] fix env var name --- frontend/src/theme.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/theme.js b/frontend/src/theme.js index 66f8d97..eb1e498 100644 --- a/frontend/src/theme.js +++ b/frontend/src/theme.js @@ -25,7 +25,7 @@ export const themes = { 'supports the technoeconomic assessment of full water treatment trains.', projectRelease: { 'version': `${process.env.REACT_APP_BUILD_VERSION || getVersionDate()}`, 'depVersions': { - 'WaterTAP': `${process.env.PROJECT_VERSION || '1.1.0'}` + 'WaterTAP': `${process.env.REACT_APP_PROJECT_VERSION || '1.1.0'}` } }, splashImage: nawiSplash, @@ -53,7 +53,7 @@ export const themes = { 'and environmental responsibility', projectRelease: { 'version': `${process.env.REACT_APP_BUILD_VERSION || getVersionDate()}`, 'depVersions': { - 'PROMMIS': `${process.env.PROJECT_VERSION || '0.3.1'}` + 'PROMMIS': `${process.env.REACT_APP_PROJECT_VERSION || '0.3.1'}` } }, splashImage: prommisSplash, @@ -80,7 +80,7 @@ export const themes = { 'process systems ', projectRelease: { 'version': `${process.env.REACT_APP_BUILD_VERSION || getVersionDate()}`, 'depVersions': { - 'IDAES': `${process.env.PROJECT_VERSION || '2.5.0'}` + 'IDAES': `${process.env.REACT_APP_PROJECT_VERSION || '2.5.0'}` } }, splashImage: idaesSplash,