Skip to content

Commit

Permalink
Merge pull request #135 from depromeet/feature/archive-issue-fix
Browse files Browse the repository at this point in the history
Feature/archive issue fix
  • Loading branch information
Jungjjeong authored Jan 24, 2024
2 parents a0b7dc6 + 691825a commit aa94781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/app/archive/marble-detail-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ export const MarbleDetailCard = forwardRef<HTMLDivElement, Props>(
/>
<button
// eslint-disable-next-line @typescript-eslint/no-misused-promises
onClick={() => setIsShowDeleteBtn(true)}
onClick={() => setIsShowDeleteBtn(!isShowDeleteBtn)}
className="absolute right-[16px] top-[14px] h-[24px] w-[24px]"
>
<Overflow />
</button>

{isShowDeleteBtn && (
<button
className="absolute right-[16px] top-[44px] h-fit w-fit rounded-3 bg-white px-4 py-3"
className="absolute right-[16px] top-[44px] h-fit w-fit rounded-3 bg-white px-4 py-3 text-secondary"
onClick={onClickMenu}
>
삭제하기
Expand Down

0 comments on commit aa94781

Please sign in to comment.