feat: start video
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user