@ -16,9 +16,10 @@ const BrandList: FC = () => {
const getData = useCallback(async () => {
try {
const res = await brandApi.list(1, 10)
const res = await brandApi.list(page, 10)
setTotal(res.total)
setBrands([
...brands,
...res.list
])
} catch (e) {