From 2d18ab600f8f1893ea40419692f5b91b1dd03ca6 Mon Sep 17 00:00:00 2001 From: Nikhil Sinha Date: Sat, 22 Feb 2025 09:20:44 -0500 Subject: [PATCH] feat: allow 1 custom partition field in stream creation fails validation if user tries to add more than 1 field --- src/pages/Home/CreateStreamModal.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Home/CreateStreamModal.tsx b/src/pages/Home/CreateStreamModal.tsx index 1520eddd..c7641804 100644 --- a/src/pages/Home/CreateStreamModal.tsx +++ b/src/pages/Home/CreateStreamModal.tsx @@ -300,7 +300,7 @@ const CustomPartitionField = (props: { - Select 3 columns to partition the events + Select only 1 column to partition the events props.onChangeValue('customPartitionFields', val)} - maxTags={3} + maxTags={1} error={props.error} />