fix: Recipe Timeline Not Filtering (#5666)

This commit is contained in:
Michael Genson 2025-07-10 11:57:20 -05:00 committed by GitHub
commit e1a04ba673
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -219,10 +219,7 @@ export class RecipeAPI extends BaseCRUDAPI<CreateRecipe, Recipe, Recipe> {
async getAllTimelineEvents(page = 1, perPage = -1, params = {} as any) {
return await this.requests.get<PaginationData<RecipeTimelineEventOut>>(
routes.recipesTimelineEvent,
{
params: { page, perPage, ...params },
},
routes.recipesTimelineEvent, { page, perPage, ...params },
);
}