alpha
Login
or
Join now
flo-bit.dev
/
youtube-party-dj
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/youtube-party-dj. democratic youtube player, everyone can vote and add songs, uni project, made with uix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update data.tsx
author
moritzbarv
committer
GitHub
date
2 years ago
(Jun 14, 2024, 3:42 PM +0200)
commit
3be2e404
3be2e404fee6a649f832919db090ecb0b8fdee99
parent
26777aec
26777aecce73ee2ea081b7039be75c72cf50a7a8
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
backend
data.tsx
+2
-2
backend/data.tsx
View file
Reviewed
···
50
50
]);
51
51
52
52
export function removePlayedVideo() {
53
53
-
sampleQueue.shift();
53
53
+
return sampleQueue.shift();
54
54
}
55
55
56
56
effect(() => {
···
96
96
}
97
97
}
98
98
99
99
-
export const sessionS = eternalVar('sessions') ?? $$(Array<SessionData>());
99
99
+
export const sessionS = eternalVar('sessions') ?? $$(Array<SessionData>());