Skip to content

Commit

Permalink
fix env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelPesce committed Dec 16, 2024
1 parent b086d11 commit e1879f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit e1879f4

Please sign in to comment.