3v324v23 commited on
Commit
9bf89c1
·
1 Parent(s): e75ca76
Files changed (1) hide show
  1. 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 HFRes;
50
- setEntries([...entries, ...data.entries]);
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>