Skip to content

Commit d67a177

Browse files
author
Emile Frey
committed
moving some files around
1 parent 44c5237 commit d67a177

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

frontend/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { Dispatch } from 'react';
22
import Router from './routes/Router';
33
import Layout from './components/Layout/Layout';
44
import { connect } from 'react-redux';
5-
import * as actions from './store/authActions';
5+
import * as actions from './auth/authActions';
66
import { PrivateRouteProps } from './routes/PrivateRoute';
77
import { ThemeProvider } from '@material-ui/core';
88
import { theme } from './Theme'
File renamed without changes.
File renamed without changes.
File renamed without changes.

frontend/src/components/Login/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { makeStyles } from '@material-ui/core/styles';
1010
import Container from '@material-ui/core/Container';
1111

1212
import { connect } from 'react-redux';
13-
import * as actions from '../../store/authActions';
13+
import * as actions from '../../auth/authActions';
1414

1515
import { useHistory, useLocation } from "react-router-dom";
1616
import { AppProps } from '../../App';

frontend/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as serviceWorker from './serviceWorker';
66
import { combineReducers, createStore, compose, applyMiddleware } from 'redux';
77
import { Provider } from 'react-redux';
88
import thunk from 'redux-thunk';
9-
import authReducer from './store/authReducer';
9+
import authReducer from './auth/authReducer';
1010

1111
const reducer = combineReducers({ auth: authReducer }); // Using Combine Reducers here although only one reducer is present.
1212
// Official explaination here: https://react-redux.js.org/using-react-redux/connect-mapstate#mapstatetoprops-will-not-run-if-the-store-state-is-the-same

frontend/src/settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ export const API_SERVER = API_SERVER_VAL;
1717

1818
export const SESSION_DURATION = 5*3600*1000;
1919

20-
export const APP_NAME = "IRIS SPECIES PREDICTOR"
20+
export const APP_NAME = "BOILERPLATE APP NAME"

0 commit comments

Comments
 (0)