From 26cd5d6bc834e2318dc29c05367233c27fee22f8 Mon Sep 17 00:00:00 2001 From: Ajay Bura <32841439+ajbura@users.noreply.github.com> Date: Fri, 20 Dec 2024 19:26:31 +0530 Subject: [PATCH] fix: textarea storybook resize options typo --- src/components/text-area/TextArea.stories.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/text-area/TextArea.stories.tsx b/src/components/text-area/TextArea.stories.tsx index 0514fc8..0150db1 100644 --- a/src/components/text-area/TextArea.stories.tsx +++ b/src/components/text-area/TextArea.stories.tsx @@ -28,7 +28,7 @@ export default { }, resize: { control: "select", - options: ["Vertical", "Horizontal", "Both", "None", "block", "inline"], + options: ["Vertical", "Horizontal", "Both", "None", "Block", "Inline"], }, }, } as ComponentMeta;