Skip to content

Commit

Permalink
🐛 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
juyeon-park committed Nov 1, 2023
1 parent 4cc6ba2 commit 6333d57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export default meta
type Story = StoryObj<typeof meta>

export const Profile: Story = {
args: { userName: '푸바오바오' },
args: { profileImg: null, userName: '푸바오바오' },
render: () => {
return <ProfileSection userName="푸바오바오" />
return <ProfileSection profileImg={null} userName="푸바오바오" />
},
}
2 changes: 1 addition & 1 deletion src/constants/image.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const DEFAULT_PROFILE_IMG = 'https://github.com/shadcn.png'
const DEFAULT_ITEM_IMG = '';

export {DEFAULT_PROFILE_IMG, DEFAULT_ITEM_IMG}
export {DEFAULT_PROFILE_IMG, DEFAULT_ITEM_IMG}

0 comments on commit 6333d57

Please sign in to comment.