Skip to content

Commit d69b760

Browse files
committed
fix: フォルダ名のバグが起きていたのの修正
1 parent 168714e commit d69b760

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/components/Send.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ import { sendRequest } from "../actions/Send";
66
import { makeStyles } from '@material-ui/core/styles';
77
import Button from '@material-ui/core/Button';
88
import TextField from '@material-ui/core/TextField';
9-
import signInReducer from "../reducers/SignIn";
10-
119

1210
const useStyles = makeStyles(theme => ({
1311
SendPage: {

src/sagas/Send.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { call, put, takeEvery } from 'redux-saga/effects';
22
import { sendApi } from '../apis/Send';
3-
import history from '../Helpers/history'
3+
import history from '../helpers/history'
44
import {sendFailed, sendSuccess} from "../actions/Send";
55

66
function* send(action) {

src/sagas/SignIn.js

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

7-
8-
97
function* signIn(action) {
108
const { error } = yield call(signInApi, action.data);
119
if (error) {
@@ -31,7 +29,7 @@ function* signUp(action) {
3129
}
3230

3331
function* signOut() {
34-
yield call(history.push, '/');
32+
yield call(history.push, '/login');
3533
}
3634

3735
const saga = [

0 commit comments

Comments
 (0)