Autoformatting all files #156

Merged
cami merged 1 commit from formatting into main 2021-07-14 19:05:52 +00:00
8 changed files with 9 additions and 8 deletions

View file

@ -81,6 +81,7 @@ with app.app_context():
db.create_all()
db.session.commit()
@app.route('/api/login', methods=['POST'])
def login():
"""

View file

@ -17,7 +17,7 @@ import BehaviorNormal from "./components/pages/BehaviorNormal";
function App() {
const [isLoggedIn] = useAuth();
isLoggedIn ? (document.title = isLoggedIn) : document.title = isLoggedIn;
isLoggedIn ? (document.title = isLoggedIn) : (document.title = isLoggedIn);
return (
<>
<Router>