0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-19 16:22:41 +00:00

Merge branch 'master' into Convert-ErrorNavItem-to-functional-component

This commit is contained in:
Trevor Buckner
2025-08-30 19:35:50 -04:00
6 changed files with 17 additions and 31 deletions

View File

@@ -44,7 +44,7 @@ const HomePage = createClass({
editor : React.createRef(null),
componentDidMount : function() {
fetchThemeBundle(this, this.props.brew.renderer, this.props.brew.theme);
fetchThemeBundle((err)=>{this.setState({ error: err })}, (theme)=>{this.setState({ themeBundle: theme })}, this.props.brew.renderer, this.props.brew.theme);
},
handleSave : function(){