Skip to content

Commit

Permalink
fix: failing builds on gooddev
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriguz committed Dec 5, 2020
1 parent f91323e commit 738247b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -111,6 +111,7 @@
}
],
"no-negated-condition": "off",
"space-before-function-paren": "off"
"space-before-function-paren": "off",
"require-atomic-updates": "off"
}
}
2 changes: 1 addition & 1 deletion src/components/appNavigation/NavBar.js
Expand Up @@ -28,7 +28,7 @@ class NavBar extends React.Component<NavBarProps> {
render() {
const { styles, goBack, backToWallet = false } = this.props
const showBackButton = goBack && !backToWallet
const showBackToWallet = goBack && backToWallet
const showBackToWallet = goBack && backToWallet

return (
<NavigationBar dark style={styles.topbarStyles}>
Expand Down

0 comments on commit 738247b

Please sign in to comment.