Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -39,12 +39,12 @@
|
|
39 |
setVideos(videoFiles);
|
40 |
});
|
41 |
|
42 |
-
fetch("https://huggingface.co/api/datasets?author=
|
43 |
.then(res => res.json())
|
44 |
.then(data => {
|
45 |
const map = {};
|
46 |
data.forEach(entry => {
|
47 |
-
const match = entry.id.match(/
|
48 |
if (match) {
|
49 |
const team = match[1];
|
50 |
if (!map[team]) map[team] = [];
|
|
|
39 |
setVideos(videoFiles);
|
40 |
});
|
41 |
|
42 |
+
fetch("https://huggingface.co/api/datasets?author=LeRobot-worldwide-hackathon")
|
43 |
.then(res => res.json())
|
44 |
.then(data => {
|
45 |
const map = {};
|
46 |
data.forEach(entry => {
|
47 |
+
const match = entry.id.match(/LeRobot-worldwide-hackathon\/team[_-]?(\d+)/i);
|
48 |
if (match) {
|
49 |
const team = match[1];
|
50 |
if (!map[team]) map[team] = [];
|