diff --git a/src/app/services/api.service.ts b/src/app/services/api.service.ts index 1073fa5..5d7a0b5 100644 --- a/src/app/services/api.service.ts +++ b/src/app/services/api.service.ts @@ -398,7 +398,7 @@ export class ApiService { if (categoryID) { params = params.set('category', categoryID.toString()); } - return this.http.get(`${this.baseUrl}/items/randomitems`, { params }) + return this.http.get(`${this.baseUrl}/randomitems`, { params }) .pipe(retry(this.retryConfig), map(items => this.normalizeItems(items))); } }