Skip to content

Commit

Permalink
fix: 테스트용 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbae0 committed Mar 2, 2024
1 parent a46626f commit 2f37062
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pages/memory-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,10 @@ export default function MemoryList({ initMemoryList }: InferGetServerSidePropsTy
setClickedMemory(memory)
handleOpenModal()
}
const { createToast } = useToastMessage()

return (
<S.Wrapper>
<S.Title onClick={() => createToast()}>My Palace</S.Title>
<S.Title>My Palace</S.Title>
{memoryList?.memoryList.map((memory, index) => (
<div key={`${memory.id}${index}`} onClick={() => handleClickMemory(memory)}>
<Card memory={memory} ref={targetRef} />
Expand Down

0 comments on commit 2f37062

Please sign in to comment.