Skip to content

Commit

Permalink
fix: vercel deploy error
Browse files Browse the repository at this point in the history
  • Loading branch information
uiop5809 committed Aug 21, 2024
1 parent 29016b1 commit cda179d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/chatting/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const Chatting = () => {
}

const user: User = {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
1 change: 1 addition & 0 deletions src/components/auth/Login.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const Template: StoryFn<LoginProps> = (args: LoginProps) => <Login {...args} />
export const Primary = Template.bind({})
Primary.args = {
user: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
2 changes: 1 addition & 1 deletion src/components/auth/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Login = ({ user }: LoginProps) => {
<p className="text-gray2 text-caption cursor-pointer">로그아웃</p>
</div>
<div className="flex flex-col gap-4 items-center">
<Profile user={{ profileImgUrl, nickName, mbti, badge }} />
<Profile user={{ id, profileImgUrl, nickName, mbti, badge }} />
<ul className="flex justify-center w-full text-gray2 text-caption">
{menuItems.map((item, index) => (
<li key={item.id} className="flex items-center">
Expand Down
1 change: 1 addition & 0 deletions src/components/board/Board.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Primary.args = {
commentCount: 18,
createdAt: '24.07.25',
memberSimpleInfo: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
1 change: 1 addition & 0 deletions src/components/board/Comment.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Primary.args = {
content:
'말을 너무 많이 들으면 머리가 너무 아파요;; 말을 너무 많이 들으면 머리가 너무 아파요;; 말을 너무 많이 들으면 머리가 너무 아파요;; 말을 너무 많이 들으면 머리가 너무 아파요;; 말을 너무 많이 들으면 머리가 너무 아파요;; 말을 너무 많이 들으면 머리가 너무 아파요;;',
memberSimpleInfo: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
1 change: 1 addition & 0 deletions src/components/common/Profile.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const Template: StoryFn<ProfileProps> = (args: ProfileProps) => (
export const Primary = Template.bind({})
Primary.args = {
user: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
1 change: 1 addition & 0 deletions src/components/discussion/DiscussionBoard.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Primary.args = {
commentCount: 18,
createdAt: '24.06.21',
memberSimpleInfo: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
1 change: 1 addition & 0 deletions src/components/home/HotBoard.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Primary.args = {
commentCount: 18,
createdAt: '1분 전',
memberSimpleInfo: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down
1 change: 1 addition & 0 deletions src/components/home/HotDiscussion.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Primary.args = {
commentCount: 18,
createdAt: '1분 전',
memberSimpleInfo: {
id: 1,
profileImgUrl: '/images/common/default.svg',
nickName: '유보라',
mbti: 'ENFP',
Expand Down

0 comments on commit cda179d

Please sign in to comment.