Skip to content

Commit 923b45d

Browse files
committed
temp
1 parent 44e58fe commit 923b45d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/components/data-container/step-box/TStepBox.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ const TStepBox = ({
4343
let content = null;
4444

4545
if (children?.length === undefined) {
46+
// children 안 들어옴
4647
if (!children) {
47-
// children 안들어옴
4848
return null;
4949
}
50-
content = children; // children 1개
50+
// children 1개
51+
content = children;
5152
} else {
5253
// children 2개 이상
5354
content = children[value - 1];

stories/components/data-container/step-box/TStepBox.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export const Default: Story = {
103103
render: Template,
104104
args: {
105105
prevButtonLabel: '이전',
106-
nextButtonLabel: '다음',
106+
nextButtonLabel: '다음22',
107107
completeButtonLabel: '저장하기',
108108
},
109109
};

0 commit comments

Comments
 (0)