Skip to content

Commit

Permalink
Update Instances.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
th-release committed Mar 19, 2024
1 parent 48ba48e commit 0d72e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Instances.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Instances: FC = () => {
const fetchData = async (): Promise<void> => {
setIsLoading(true)

const res = await axios(`/api/instances?take=20&skip=${parseInt(page) * 10}`, {
const res = await axios(`/api/instances?take=10&skip=${parseInt(page) * 10}`, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
Expand Down

0 comments on commit 0d72e5d

Please sign in to comment.