From 3b9672bac1332b0ba000c80d7b2e0ea7f188a5f7 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Thu, 10 Jul 2025 16:39:25 +0000 Subject: [PATCH] remove erroneous params key --- frontend/lib/api/user/recipes/recipe.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/lib/api/user/recipes/recipe.ts b/frontend/lib/api/user/recipes/recipe.ts index b89a4eb51..c2e923c2f 100644 --- a/frontend/lib/api/user/recipes/recipe.ts +++ b/frontend/lib/api/user/recipes/recipe.ts @@ -219,10 +219,7 @@ export class RecipeAPI extends BaseCRUDAPI { async getAllTimelineEvents(page = 1, perPage = -1, params = {} as any) { return await this.requests.get>( - routes.recipesTimelineEvent, - { - params: { page, perPage, ...params }, - }, + routes.recipesTimelineEvent, { page, perPage, ...params }, ); }