Skip to content

Commit

Permalink
fix: typeerror 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Jan 4, 2025
1 parent 419d8b6 commit d9a78c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/common/EditableSelect.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Meta, StoryFn } from '@storybook/react';

import { LINK_TITLES } from '@/components/members/upload/constants';
import MemberSelectOptions from '@/components/members/upload/forms/SelectOptions';

import EditableSelect from './EditableSelect';
Expand All @@ -11,7 +10,7 @@ export default {

const Template: StoryFn<typeof EditableSelect> = (args) => (
<EditableSelect {...args}>
<MemberSelectOptions options={LINK_TITLES} />
<MemberSelectOptions options={['option1', 'option2', 'option3']} />
</EditableSelect>
);

Expand Down
2 changes: 1 addition & 1 deletion src/components/members/upload/forms/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ const SubmitButton = styled.button<{ isDisabled: boolean }>`
${textStyles.SUIT_14_M}
@media ${MOBILE_MEDIA_QUERY} {
margin-top: 0;
border-radius: 12px;
width: 100%;
height: 52px;
line-height: 100%;
margin-top: 0;
${textStyles.SUIT_16_SB}
}
Expand Down

0 comments on commit d9a78c2

Please sign in to comment.