Skip to content

Commit

Permalink
chore: 테스트용 코드 복원
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Jul 29, 2024
1 parent ff76c6d commit 43c1551
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/ResultPage/components/ScreeningResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Content = ({ pass }: { pass?: boolean }) => {

return (
<>
{!pass ? (
{pass ? (
<p className={content}>
<span>{`안녕하세요. ${season}${soptName} 입니다.\n\n`}</span>
<strong className={strongText[isMakers ? 'makers' : 'sopt']}>{`축하드립니다!`}</strong>
Expand Down Expand Up @@ -121,7 +121,7 @@ const ScreeningResult = () => {
<Title>결과 확인</Title>
<Content pass={pass} />
</div>
{!pass && (
{pass && (
<>
<div className={bottomAnimation[isMakers ? 'makers' : 'sopt']} />
{isMakers ? (
Expand Down

0 comments on commit 43c1551

Please sign in to comment.