From b6c76a21641a887ee3169266d06297724e05edde Mon Sep 17 00:00:00 2001 From: Pallavi Kumari Date: Mon, 6 Oct 2025 01:37:33 +0530 Subject: [PATCH] add priority type --- src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx b/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx index 7df76cb5..302d16d2 100644 --- a/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx +++ b/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx @@ -126,7 +126,8 @@ const addTargetSchema = z rewritePathType: z .enum(["exact", "prefix", "regex", "stripPrefix"]) .optional() - .nullable() + .nullable(), + priority: z.number().int().min(1).max(1000) }) .refine( (data) => {