- src/pages/index.tsx +2 -3
src/pages/index.tsx
CHANGED
@@ -46,9 +46,8 @@ export default function Home() {
|
|
46 |
</div>)}
|
47 |
{next ?
|
48 |
<button onClick={async () => {
|
49 |
-
const data = await (await fetch('https://huggingface.co' + next)).json() as
|
50 |
-
setEntries([...entries, ...data
|
51 |
-
setNext(data.nextURL!)
|
52 |
}}>more</button> : null}
|
53 |
</Stack>
|
54 |
</Container>
|
|
|
46 |
</div>)}
|
47 |
{next ?
|
48 |
<button onClick={async () => {
|
49 |
+
const data = await (await fetch('https://huggingface.co' + next)).json() as HF_FileEntry[];
|
50 |
+
setEntries([...entries, ...data]);
|
|
|
51 |
}}>more</button> : null}
|
52 |
</Stack>
|
53 |
</Container>
|