Skip to content

Commit

Permalink
style: 피드백 관리 페이지 - 반려 이벤트에 대한 스타일 수정 (아이콘, 메시지 부분)
Browse files Browse the repository at this point in the history
  • Loading branch information
khakhiD committed Dec 2, 2023
1 parent 46d08ec commit b627abd
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Box, Flex, Icon, Link, Spacer, Text, Tooltip, useToast } from '@chakra-ui/react';
import { BiCommentError } from 'react-icons/bi';
import { FiFileText } from 'react-icons/fi';
import { useNavigate } from 'react-router-dom';
import { Link as ReactRouterLink } from 'react-router-dom';
Expand Down Expand Up @@ -158,7 +159,7 @@ const FeedbackManagementItem = ({
gap={'0.69rem'}
>
<Icon
as={FiFileText}
as={!isReject ? FiFileText : BiCommentError}
color={!isReject ? 'gray.600' : 'red.600'}
boxSize={'1rem'}
/>
Expand All @@ -178,7 +179,7 @@ const FeedbackManagementItem = ({
noOfLines={1}
color={!isReject ? 'gray.600' : 'red.600'}
>
{!isReject ? resumeTitle : rejectMessage}
{!isReject ? resumeTitle : `반려 메시지: ${rejectMessage}`}
</Text>
</Tooltip>
<Spacer />
Expand Down

0 comments on commit b627abd

Please sign in to comment.