Autoformatting all files
This commit is contained in:
parent
816689acdf
commit
0e222d3d52
8 changed files with 9 additions and 8 deletions
|
@ -81,6 +81,7 @@ with app.app_context():
|
|||
db.create_all()
|
||||
db.session.commit()
|
||||
|
||||
|
||||
@app.route('/api/login', methods=['POST'])
|
||||
def login():
|
||||
"""
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue