Skip to content

Commit

Permalink
feat: remove calculate manage page empty view subtitle
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuhho committed Jul 3, 2024
1 parent 42ae9d5 commit f8c16ee
Showing 1 changed file with 0 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,6 @@ export const NoCalculationGraphic = ({ status }: NoCalculationGraphicProps) => {
? '정산 중인 내역이 없어요.'
: '아직 완료된 상담이 없어요.'}
</MainText>
<SubText>
{status === '완료' ? (
<>
수익은 정산 신청일로부터 <br /> 15영업일 이후에 지급되어요.
</>
) : status === '정산 중' ? (
<>
아직 정산 신청을 하지 않은 상담이 있다면 <br /> <b>정산 예정</b>{' '}
탭에서 신청할 수 있어요.
</>
) : (
<>
상담 종료 신청을 보내면 셰어의 확인 없이도 <br />
n일 이내 자동으로 상담이 종료되어요.
</>
)}
</SubText>
</NoCalculationGraphicWrapper>
);
};
Expand All @@ -60,13 +43,3 @@ const MainText = styled.div`
font-weight: 600;
line-height: 3rem;
`;
const SubText = styled.div`
margin-top: 1.2rem;
color: var(--greyscale-grey-1-text, #33333a);
text-align: center;
font-family: Pretendard;
font-size: 1.6rem;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 2.4rem */
`;

0 comments on commit f8c16ee

Please sign in to comment.