Skip to content

Commit

Permalink
fix: 자동 배포 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hae-on committed Apr 13, 2024
1 parent 5dff033 commit 6907a47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const MemberRecipeList = ({ isPreview = false }: MemberRecipeListProps) => {
{recipeToDisplay?.map((recipe) => (
<li key={recipe.id}>
<Link as={RouterLink} to={`${PATH.RECIPE}/${recipe.id}`}>
<RecipeItem recipe={recipe} isMemberPage={isPreview} />
{/* <RecipeItem recipe={recipe} isMemberPage={isPreview} /> */}
</Link>
</li>
))}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Recipe/RecipeItem/RecipeItem.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BottomSheet, Skeleton, useBottomSheet } from '@fun-eat/design-system';
import type { MouseEventHandler, PropsWithChildren} from 'react';
import type { MouseEventHandler, PropsWithChildren } from 'react';
import { useState } from 'react';
import { Link } from 'react-router-dom';

Expand Down

0 comments on commit 6907a47

Please sign in to comment.