Skip to content

Commit

Permalink
refactor: 충전기 고장 신고 문구 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielyoon7 committed Aug 1, 2023
1 parent 5dcc4b1 commit e125655
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const ChargerReportConfirmation = ({ stationId }: ChargerReportConfirmationProps
return (
<Box p={2}>
<Text variant="title" mb={3}>
충전기의 상태가 실제와 다른가요?
표시된 정보가 실제 충전기 상태와 다를 수 있습니다.
</Text>
<Alert color="primary" text="앱에 표시된 정보가 실제와 차이가 나는 경우가 있습니다." />
<Alert color="primary" text="충전기가 고장나있다면 신고해주세요." />
<FlexBox justifyContent="between">
<Button size="md" onClick={() => modalActions.closeModal()}>
생각해보니 문제가 없는 것 같아요
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,7 @@ const DetailedStation = ({ station }: DetailedStationProps) => {
}
disabled={isStationChargerReported}
>
{isStationChargerReported
? '이미 신고한 충전소입니다.'
: '📢 실제 충전기 상태와 일치하지 않는 충전소에요'}
{isStationChargerReported ? '이미 신고한 충전소입니다.' : '🚨 충전기 고장 신고 '}
</Button>
)}
</FlexBox>
Expand Down

0 comments on commit e125655

Please sign in to comment.