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 12, 2024
1 parent c102b99 commit 1f35600
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/worry/PopularMssaem.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Primary.args = {
nickName: '유보라',
mbti: 'ESFP',
badge: '엠비티라노',
profileImageurl: '/images/common/default.svg',
profileImgUrl: '/images/common/default.svg',
introduction: '진짜 어른이 되고 싶은 어른이에요',
},
}
8 changes: 4 additions & 4 deletions src/components/worry/PopularMssaem.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
'use client'

import Image from 'next/image'
import { UserProfileI } from '@/model/User'
import { User } from '@/model/User'
import Button from '../common/Button'

export interface PopularMssaemProps {
popularMssaem: UserProfileI
popularMssaem: User
}

const PopularMssaem = ({ popularMssaem }: PopularMssaemProps) => {
const { nickName, mbti, badge, profileImageurl, introduction } = popularMssaem
const { nickName, mbti, badge, profileImgUrl, introduction } = popularMssaem

return (
<div className="flex flex-col items-center gap-4">
<Image src={profileImageurl} alt="profile" width={194} height={194} />
<Image src={profileImgUrl} alt="profile" width={194} height={194} />
<div className="flex flex-col items-center gap-2.5">
<div className="text-title1 text-maindark font-bold">{nickName}</div>
<div className="flex gap-2.5">
Expand Down

0 comments on commit 1f35600

Please sign in to comment.