feat: start video

This commit is contained in:
2025-12-03 16:11:44 +01:00
parent f6cb467929
commit 13f34d3ef1
4 changed files with 104 additions and 21 deletions
+5 -5
View File
@@ -55,8 +55,8 @@ export default ({ children }) => {
useDataFromRef({
ref: currentUID
? projectsRef
.where("userId", "==", currentUID)
.orderBy("updatedAt", "desc")
.where("userId", "==", currentUID)
.orderBy("updatedAt", "desc")
: null,
simpleRef: false,
listener: true,
@@ -299,9 +299,9 @@ export default ({ children }) => {
const userDoc = await usersRef.doc(uid).get();
return userDoc.exists
? {
id: userDoc.id,
...userDoc.data(),
}
id: userDoc.id,
...userDoc.data(),
}
: null;
} catch (e) {
console.log(e);