Skip to content

Commit b9baec7

Browse files
committed
feat: 残高表示の実装
1 parent 1e98a44 commit b9baec7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/reducers/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import pathReducer from './Path'
33
import signInReducer from './SignIn'
44
import funneyReducer from './Funney'
55

6-
76
const reducers = combineReducers({
87
pathReducer,
98
signInReducer,

src/sagas/SignIn.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { signInApi, signUpApi } from '../apis/SignIn';
44
import { GetAllFunney } from './Funney'
55
import history from '../helpers/history';
66

7+
8+
79
function* signIn(action) {
810
const { error } = yield call(signInApi, action.data);
911
if (error) {

0 commit comments

Comments
 (0)