@@ -6,7 +6,7 @@ import {Actions} from 'react-native-router-flux'
66import { Footer , FooterTab , Button } from 'native-base'
77import Gradient from '../Gradient/Gradient.ui'
88import { setTabBarHeight } from '../../dimensions/action'
9- import { openSidebar , closeSidebar } from '../SideMenu/action'
9+ import { openSideMenu , closeSideMenu } from '../SideMenu/action'
1010import T from '../FormattedText'
1111import wallet from '../../../../assets/images/tabbar/wallets.png'
1212import walletSelected from '../../../../assets/images/tabbar/wallets_selected.png'
@@ -22,12 +22,12 @@ import styles from './styles.js'
2222
2323export default class TabBar extends Component {
2424
25- _handleToggleSideBar = ( ) => {
25+ _handleToggleSideMenu = ( ) => {
2626 if ( ! this . props . sidemenu ) {
27- this . props . dispatch ( openSidebar ( ) )
27+ this . props . dispatch ( openSideMenu ( ) )
2828 }
2929 if ( this . props . sidemenu ) {
30- this . props . dispatch ( closeSidebar ( ) )
30+ this . props . dispatch ( closeSideMenu ( ) )
3131 }
3232 }
3333
@@ -87,7 +87,7 @@ export default class TabBar extends Component {
8787 </ Button >
8888
8989 < Button
90- onPress = { this . _handleToggleSideBar }
90+ onPress = { this . _handleToggleSideMenu }
9191 active = { this . props . sidemenu } >
9292 < Image
9393 style = { [ { width : 25 , height : 25 , marginTop : 3 } ] }
0 commit comments