mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-28 07:55:08 +03:00
Removed uiReducer
This commit is contained in:
parent
e685090803
commit
0ad3fd10bd
@ -45,8 +45,6 @@ class HeaderView extends Component {
|
||||
reputation,
|
||||
} = this.props;
|
||||
|
||||
console.log('error', name, userName, reputation, getReputation(reputation));
|
||||
|
||||
return (
|
||||
<SafeAreaView style={[styles.container, isReverse && styles.containerReverse]}>
|
||||
<StatusBar hidden={hideStatusBar} translucent />
|
||||
|
@ -1,12 +1,10 @@
|
||||
import { combineReducers } from 'redux';
|
||||
import accountReducer from './accountReducer';
|
||||
import applicationReducer from './applicationReducer';
|
||||
import UIReducer from './uiReducer';
|
||||
import nav from './nav';
|
||||
|
||||
export default combineReducers({
|
||||
account: accountReducer,
|
||||
application: applicationReducer,
|
||||
nav,
|
||||
ui: UIReducer,
|
||||
});
|
||||
|
@ -1,12 +0,0 @@
|
||||
import { LOGIN, LOGOUT } from '../constants/constants';
|
||||
|
||||
const initialState = {
|
||||
isPinCodeReqiure: false,
|
||||
};
|
||||
|
||||
export default function (state = initialState, action) {
|
||||
switch (action.type) {
|
||||
default:
|
||||
return state;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user