diff --git a/apps/jurumarble/src/app/drink-info/[id]/components/DrinkCommentContainer.tsx b/apps/jurumarble/src/app/drink-info/[id]/components/DrinkCommentContainer.tsx index fdc4b80b..0085d059 100644 --- a/apps/jurumarble/src/app/drink-info/[id]/components/DrinkCommentContainer.tsx +++ b/apps/jurumarble/src/app/drink-info/[id]/components/DrinkCommentContainer.tsx @@ -4,7 +4,6 @@ import CommentForm from "app/vote/[id]/components/CommentForm"; import CommentToolBar from "app/vote/[id]/components/CommentToolbar"; import useCommentServices from "app/vote/[id]/services/useCommentServices"; import { queryKeys } from "lib/queryKeys"; -import Link from "next/link"; import { useParams } from "next/navigation"; import { useState } from "react"; import styled from "styled-components"; @@ -94,7 +93,6 @@ function DrinkCommentContainer() { userId: userId, restaurant, }} - mutateDeleteComment={() => void 0} mutateLike={() => mutateLike(id)} mutateHate={() => mutateHate(id)} key={`comment_id_${index}`} diff --git a/apps/jurumarble/src/components/AorBMark.tsx b/apps/jurumarble/src/components/AorBMark.tsx index 90d6ad6b..13722391 100644 --- a/apps/jurumarble/src/components/AorBMark.tsx +++ b/apps/jurumarble/src/components/AorBMark.tsx @@ -13,6 +13,7 @@ const AorBMarkStyled = styled.div<{ AorB: string }>` ${({ theme, AorB }) => css` ${theme.typography.caption_chip} background-color: ${AorB === "A" ? theme.colors.sub_01 : theme.colors.sub_02}; + color: ${theme.colors.white}; position: absolute; top: 0; left: 0;