Skip to content

Commit

Permalink
Fix min time for cooking
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreasgdp committed Oct 21, 2023
1 parent 8d9ea5d commit 35bddbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/trpc/recipe/recipeRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const createAndUpdateRecipeInput = z.object({
title: z.string().min(3).max(50),
description: z.string(),
isPublic: z.boolean().default(false),
timeInKitchen: z.number().min(1).int(),
waitingTime: z.number().min(1).int(),
timeInKitchen: z.number().min(0).int(),
waitingTime: z.number().min(0).int(),
numberOfPeople: z.number().min(1).int(),
ingredients: ingredientsArrayForRecipe,
steps: z.array(
Expand Down

1 comment on commit 35bddbb

@vercel
Copy link

@vercel vercel bot commented on 35bddbb Oct 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

mealtime – ./

mealtime-git-master-mealtime.vercel.app
mealtime-mealtime.vercel.app
www.momentmeal.com
momentmeal.com

Please sign in to comment.