Skip to content

Commit f79d11f

Browse files
committed
fix: style check failed
1 parent 8322cbb commit f79d11f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/app/(commonLayout)/datasets/Datasets.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client'
22

3-
import { useEffect, useRef, useCallback } from 'react'
3+
import { useCallback, useEffect, useRef } from 'react'
44
import useSWRInfinite from 'swr/infinite'
55
import { debounce } from 'lodash-es'
66
import { useTranslation } from 'react-i18next'
@@ -22,7 +22,7 @@ const getKey = (
2222
url: 'datasets',
2323
params: {
2424
page: pageIndex + 1,
25-
limit: 30,
25+
limit: 5,
2626
include_all: includeAll,
2727
},
2828
}
@@ -73,7 +73,7 @@ const Datasets = ({
7373
setSize(size => size + 1)
7474
}
7575
}, 50),
76-
[setSize]
76+
[setSize],
7777
)
7878

7979
useEffect(() => {

0 commit comments

Comments
 (0)