Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/umami-software/umami into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscao633 committed Mar 7, 2025
2 parents b1901c7 + 21a1487 commit 3c1ea69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/api/reports/journey/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export async function POST(request: Request) {
const schema = z.object({
...reportParms,
steps: z.coerce.number().min(3).max(7),
startStep: z.string(),
endStep: z.string(),
startStep: z.string().optional(),
endStep: z.string().optional(),
});

const { auth, body, error } = await parseRequest(request, schema);
Expand Down

0 comments on commit 3c1ea69

Please sign in to comment.