username on creation
This commit is contained in:
@@ -32,6 +32,14 @@ const HitParade = () => {
|
||||
condition: true,
|
||||
});
|
||||
|
||||
console.log(
|
||||
"top songs",
|
||||
JSON.stringify(
|
||||
topSongs.map((song) => song.userId),
|
||||
null,
|
||||
2
|
||||
)
|
||||
);
|
||||
const { data: topPlaybacks } = useDataFromRef({
|
||||
ref: projectsRef.where("views", ">", 0).orderBy("views", "desc").limit(50),
|
||||
format: (docs) => docs.filter((d) => d?.playbackUrl != null).slice(0, 10),
|
||||
|
||||
Reference in New Issue
Block a user