From 6624de7a320b7a8fda99a05de9f00b7325831caa Mon Sep 17 00:00:00 2001 From: sdarbinyan Date: Tue, 24 Mar 2026 02:52:39 +0400 Subject: [PATCH] random items --- src/app/services/api.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))); } }