mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-29 16:44:27 +03:00
Removed uiReducer
This commit is contained in:
parent
e685090803
commit
0ad3fd10bd
@ -45,8 +45,6 @@ class HeaderView extends Component {
|
|||||||
reputation,
|
reputation,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
console.log('error', name, userName, reputation, getReputation(reputation));
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SafeAreaView style={[styles.container, isReverse && styles.containerReverse]}>
|
<SafeAreaView style={[styles.container, isReverse && styles.containerReverse]}>
|
||||||
<StatusBar hidden={hideStatusBar} translucent />
|
<StatusBar hidden={hideStatusBar} translucent />
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
import { combineReducers } from 'redux';
|
import { combineReducers } from 'redux';
|
||||||
import accountReducer from './accountReducer';
|
import accountReducer from './accountReducer';
|
||||||
import applicationReducer from './applicationReducer';
|
import applicationReducer from './applicationReducer';
|
||||||
import UIReducer from './uiReducer';
|
|
||||||
import nav from './nav';
|
import nav from './nav';
|
||||||
|
|
||||||
export default combineReducers({
|
export default combineReducers({
|
||||||
account: accountReducer,
|
account: accountReducer,
|
||||||
application: applicationReducer,
|
application: applicationReducer,
|
||||||
nav,
|
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