Skip to content

Commit

Permalink
feat(calendar): 박수 부분 영어 전환
Browse files Browse the repository at this point in the history
  • Loading branch information
sgd122 committed Nov 29, 2023
1 parent fd6eb94 commit 2d484ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ export default createStyles(
indicatorDateCountBox: {
margin: "auto 0",
["& > div"]: {
width: "56px",
minWidth: "56px",
height: "28px",
padding: `0 ${theme.spacing.spacing10}`,
border: `1px solid ${theme.colors.primary1}`,
borderRadius: theme.radius.radius100,
textAlign: "center",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ export const Indicator: React.FC<Props> = ({
level="subhead2"
color="primary1"
>
{differenceInDays(selected.to.date, selected.from.date)}
{differenceInDays(selected.to.date, selected.from.date)}
{locale === "ko" ? "박" : " nights"}
</Typography>
</div>
</div>
Expand Down

0 comments on commit 2d484ac

Please sign in to comment.