Skip to content

Commit

Permalink
🐛 Change ~ to –
Browse files Browse the repository at this point in the history
  • Loading branch information
dohyun-ko committed Aug 31, 2024
1 parent d360413 commit 514092e
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
region: "eu",
});
</script>
<script type="module" crossorigin src="/assets/index-80f24a79.js"></script>
<script type="module" crossorigin src="/assets/index-92b841fc.js"></script>
<link rel="stylesheet" href="/assets/index-32718201.css">
</head>
<body>
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
region: "eu",
});
</script>
<script type="module" crossorigin src="/assets/index-80f24a79.js"></script>
<script type="module" crossorigin src="/assets/index-92b841fc.js"></script>
<link rel="stylesheet" href="/assets/index-32718201.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en-US/experience.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const experience = {
endedAt: "2024-02",
description:
"Studied the basics of reinforcement learning through Coursera's Reinforcement Learning Specialization.",
whatIDid: ["Studied basics of reinforcement learning (~Q-Learning)"],
whatIDid: ["Studied basics of reinforcement learning (Q-Learning)"],
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/printable/components/OrganizationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const OrganizationCard = ({ organization }: OrganizationCardProps) => {
<Text size={font(0.75)}>{job}</Text>

<Text size={font(0.75)}>
{formatYearMonth(new Date(startedAt))} ~{" "}
{formatYearMonth(new Date(startedAt))} {" "}
{endedAt ? formatYearMonth(new Date(endedAt)) : "Now"}
</Text>
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/printable/components/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ProjectCard = ({ project }: ProjectCardProps) => {
</StylessA>

<Text size={font(0.75)}>
{formatYearMonth(new Date(startedAt))} ~{" "}
{formatYearMonth(new Date(startedAt))} {" "}
{endedAt ? formatYearMonth(new Date(endedAt)) : "Now"}
</Text>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/printable/sections/EducationSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const EducationSection = ({}: EducationSectionProps) => {
</Flex>
<Flex flexDirection={"column"}>
<Text size={font(1)}>TGPA 4.04 / 4.5</Text>
<Text size={font(0.75)}>2022. 2 ~ </Text>
<Text size={font(0.75)}>2022. 2 </Text>
</Flex>

{/* <Flex flexDirection={"column"} width={"100%"} gap={"10px"}>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/resume/components/OrganizationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const OrganizationCard = ({ organization }: OrganizationCardProps) => {
<Text>{job}</Text>

<Text>
{formatYearMonth(new Date(startedAt))} ~{" "}
{formatYearMonth(new Date(startedAt))} {" "}
{endedAt ? formatYearMonth(new Date(endedAt)) : "Now"}
</Text>
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/resume/components/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ProjectCard = ({ project }: ProjectCardProps) => {
</StylessA>

<Text>
{formatYearMonth(new Date(startedAt))} ~{" "}
{formatYearMonth(new Date(startedAt))} {" "}
{endedAt ? formatYearMonth(new Date(endedAt)) : "Now"}
</Text>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/resume/sections/EducationSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const EducationSection = ({}: EducationSectionProps) => {
GIST
</Text>
<Text size={"1rem"}>{t("education.major")}</Text>
<Text size={"1rem"}>2022. 2 ~ </Text>
<Text size={"1rem"}>2022. 2 </Text>
</Flex>
</Flex>

Expand Down

0 comments on commit 514092e

Please sign in to comment.