Skip to content

Commit

Permalink
fix: 컴포넌트명 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minjongbaek committed Dec 20, 2023
1 parent 8e538d0 commit 87e723f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/v1/profile/bookShelf/ProfileBookShelf.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const ProfileBookShelf = ({ userId }: { userId: 'me' | APIUser['userId'] }) => {
/>
)}
>
<Suspense fallback={<ProfileBookShelfSkelenton />}>
<Suspense fallback={<ProfileBookShelfSkeleton />}>
{userId === 'me' ? (
<MyProfileBookshelfContainer />
) : (
Expand All @@ -39,7 +39,7 @@ const ProfileBookShelf = ({ userId }: { userId: 'me' | APIUser['userId'] }) => {

export default ProfileBookShelf;

const ProfileBookShelfSkelenton = () => {
const ProfileBookShelfSkeleton = () => {
return (
<div className="flex animate-pulse flex-col gap-[2rem]">
<div className="h-[2.7rem] w-[5rem] bg-placeholder" />
Expand Down
4 changes: 2 additions & 2 deletions src/v1/profile/info/ProfileInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ProfileInfo = ({ userId, children }: ProfileInfoProps) => {
/>
)}
>
<Suspense fallback={<ProfileInfoSkelenton />}>
<Suspense fallback={<ProfileInfoSkeleton />}>
{userId === 'me' ? (
<MyProfileContainer />
) : (
Expand All @@ -44,7 +44,7 @@ const ProfileInfo = ({ userId, children }: ProfileInfoProps) => {

export default ProfileInfo;

const ProfileInfoSkelenton = () => {
const ProfileInfoSkeleton = () => {
return (
<div className="mb-[2rem] flex animate-pulse flex-col gap-[2rem]">
<div className="flex gap-[0.8rem]">
Expand Down

0 comments on commit 87e723f

Please sign in to comment.