Skip to content

Commit

Permalink
Move HandleAuth component to auth folder
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaBilogurova committed May 24, 2021
1 parent 416dc6d commit 790628d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import ReturningUser from './pages/ReturningUser';
import Auth from './components/auth/Auth';
import CheckInForm from './pages/CheckInForm';
import Success from './pages/Success';
import HandleAuth from './pages/HandleAuth';
import HandleAuth from './components/auth/HandleAuth';
import EmailSent from './pages/EmailSent';
import Events from './pages/Events';
import AddNew from './pages/AddNew';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react';
import { Redirect } from 'react-router-dom';

import '../sass/MagicLink.scss';
import '../../sass/MagicLink.scss';

const HandleAuth = (props) => {
const [isMagicLinkValid, setMagicLink] = useState(null);
Expand Down

0 comments on commit 790628d

Please sign in to comment.