0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Eliminate hanging comma

This commit is contained in:
G.Ambatte
2021-08-17 19:25:39 +12:00
parent 2a7bde7e44
commit 6573ada881

View File

@@ -191,7 +191,7 @@ const EditPage = createClass({
this.setState((prevState)=>({
isSaving : true,
errors : null,
htmlErrors : Markdown.validate(prevState.brew.text),
htmlErrors : Markdown.validate(prevState.brew.text)
}));
const transfer = this.state.saveGoogle == _.isNil(this.state.brew.googleId);