fix only showing one queued & building package
This commit is contained in:
@@ -157,7 +157,7 @@ const getBuiltPackages = () => {
|
||||
}
|
||||
|
||||
const getBuildingPackages = () => {
|
||||
fetch('https://api.alhp.dev/packages?limit=1&offset=0&status=building', {
|
||||
fetch('https://api.alhp.dev/packages?limit=0&offset=0&status=building', {
|
||||
method: 'GET'
|
||||
})
|
||||
.then((response) => {
|
||||
@@ -174,7 +174,7 @@ const getBuildingPackages = () => {
|
||||
}
|
||||
|
||||
const getQueuedPackages = () => {
|
||||
fetch('https://api.alhp.dev/packages?limit=1&offset=0&status=queued', {
|
||||
fetch('https://api.alhp.dev/packages?limit=0&offset=0&status=queued', {
|
||||
method: 'GET'
|
||||
})
|
||||
.then((response) => {
|
||||
|
Reference in New Issue
Block a user