From 8a6d11a90b5379c22b768a7cf5f38303f8cd1f90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wendell=20Guimar=C3=A3es?= Date: Fri, 10 Jan 2025 10:10:11 -0300 Subject: [PATCH] Fix: Updated the storybook of the simple-block --- src/community/__stories__/blocks-story.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/community/__stories__/blocks-story.tsx b/src/community/__stories__/blocks-story.tsx index 0ae1c3353..1f3c46bbc 100644 --- a/src/community/__stories__/blocks-story.tsx +++ b/src/community/__stories__/blocks-story.tsx @@ -66,13 +66,18 @@ BlockRow.args = { type SimpleBlockArgs = { description: string; + label: string; }; -export const BlockSimple: StoryComponent = ({description}) => { +export const BlockSimple: StoryComponent = ({description, label}) => { return ( - } /> + } + /> ); @@ -81,6 +86,7 @@ export const BlockSimple: StoryComponent = ({description}) => { BlockSimple.storyName = 'SimpleBlock'; BlockSimple.args = { description: 'description', + label: 'label', }; type InformationBlockArgs = {