diff --git a/client/homebrew/navbar/error-navitem.jsx b/client/homebrew/navbar/error-navitem.jsx
index 5dd5c1eb9..f6788e6d5 100644
--- a/client/homebrew/navbar/error-navitem.jsx
+++ b/client/homebrew/navbar/error-navitem.jsx
@@ -111,7 +111,7 @@ const ErrorNavItem = createClass({
Looks like there was a problem retreiving
the theme, or a theme that it inherits,
for this brew. Verify that brew
- {response.body.brewId} still exists!
+ {response.body.brewId} still exists!
;
}
diff --git a/client/homebrew/pages/vaultPage/vaultPage.jsx b/client/homebrew/pages/vaultPage/vaultPage.jsx
index a550ec578..bad1fbd57 100644
--- a/client/homebrew/pages/vaultPage/vaultPage.jsx
+++ b/client/homebrew/pages/vaultPage/vaultPage.jsx
@@ -330,7 +330,7 @@ const VaultPage = (props)=>{
if(error) {
const errorText = ErrorIndex()[error.HBErrorCode.toString()] || '';
-
+
return (
Error: {errorText}
diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx
index 01807db70..23ae5d321 100644
--- a/shared/naturalcrit/splitPane/splitPane.jsx
+++ b/shared/naturalcrit/splitPane/splitPane.jsx
@@ -15,12 +15,12 @@ const SplitPane = createClass({
getInitialState : function() {
return {
- currentDividerPos : null,
- windowWidth : 0,
- isDragging : false,
- moveSource : false,
- moveBrew : false,
- showMoveArrows : true
+ currentDividerPos : null,
+ windowWidth : 0,
+ isDragging : false,
+ moveSource : false,
+ moveBrew : false,
+ showMoveArrows : true
};
},
@@ -45,7 +45,7 @@ const SplitPane = createClass({
// This lives here instead of in the initial render because you cannot touch localStorage until the componant mounts.
const loadLiveScroll = window.localStorage.getItem('liveScroll') === 'true';
- this.setState({ liveScroll : loadLiveScroll });
+ this.setState({ liveScroll: loadLiveScroll });
},
componentWillUnmount : function() {
@@ -130,7 +130,7 @@ const SplitPane = createClass({
@@ -160,7 +160,7 @@ const SplitPane = createClass({
...(this.props.showDividerButtons && {
moveBrew : this.state.moveBrew,
moveSource : this.state.moveSource,
- liveScroll : this.state.liveScroll,
+ liveScroll : this.state.liveScroll,
setMoveArrows : this.setMoveArrows,
}),
})}