Skip to content

Commit

Permalink
Merge pull request #130 from MichaelPesce/fix-theme-issue
Browse files Browse the repository at this point in the history
Set WaterTAP as default theme
  • Loading branch information
MichaelPesce authored Jul 30, 2024
2 parents 397421d + 539d9dc commit bac49e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/ui/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function App() {
const [hasFlowsheetsList, setHasFlowsheetsList] = useState(false);
const [hasTheme, setHasTheme] = useState(true);
const [numberOfSubprocesses, setNumberOfSubprocesses] = useState({})
const [theme, setTheme] = useState(themes[process.env.REACT_APP_THEME]);
const [theme, setTheme] = useState(themes[process.env.REACT_APP_THEME] || themes["watertap"]);
const [checkAgain, setCheckAgain] = useState(1)
const WAIT_TIME = 2

Expand Down

0 comments on commit bac49e9

Please sign in to comment.