Final touches for V1

This commit is contained in:
2024-04-06 01:06:17 -04:00
parent 63321e0550
commit 1c4183dd85
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -22,7 +22,8 @@
"react": "^18.2.0",
"react-beforeunload": "^2.6.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.1.1"
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.50.1"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
+1 -1
View File
@@ -20,7 +20,7 @@ function Home() {
// Authentication
useEffect(() => {
onAuthStateChanged(auth, (user) => {
onAuthStateChanged(auth, async (user) => {
if (user) {
setAuth(true);
} else {