Skip to content

Commit

Permalink
chore: Update sponsors (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhea-so committed May 1, 2024
2 parents ba24351 + 39f493e commit 5cd877c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.62",
"version": "0.4.63",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const PrivacyPolicyListItem = () => {
const navigate = useNavigate();
const { t } = useTranslation();

return <ListItem media={<LawIcon size={26} />} title={t('privacy-policy')} link onClick={() => navigate('/privacy_policy')} />;
return <ListItem media={<LawIcon size={26} />} title={t('privacy-policy')} link onClick={() => navigate('/privacy_policy.html')} />;
};

export default PrivacyPolicyListItem;
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const TermAndConditionsListItem = () => {
const navigate = useNavigate();
const { t } = useTranslation();

return <ListItem media={<LawIcon size={26} />} title={t('term-and-conditions')} link onClick={() => navigate('/term_and_conditions')} />;
return <ListItem media={<LawIcon size={26} />} title={t('term-and-conditions')} link onClick={() => navigate('/term_and_conditions.html')} />;
};

export default TermAndConditionsListItem;
1 change: 1 addition & 0 deletions web/src/pages/sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const SponsorsPage = () => {
<li>doer</li> {/* 2024-05-02 KakaoPay */}
<li>행복한삐에로</li> {/* 2024-05-02 KakaoPay */}
<li>Conan</li> {/* 2024-05-02 KakaoPay */}
<li>탑뚜기</li> {/* 2024-05-02 KakaoPay */}
</Block>

<Block>
Expand Down
4 changes: 2 additions & 2 deletions web/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const Router = () => {
</>
}
/>
<Route path="/privacy_policy" element={<PrivacyPolicyPage />} />
<Route path="/term_and_conditions" element={<TermAndConditionsPage />} />
<Route path="/privacy_policy.html" element={<PrivacyPolicyPage />} />
<Route path="/term_and_conditions.html" element={<TermAndConditionsPage />} />
<Route path="/sponsors" element={<SponsorsPage />} />
</Routes>
</BrowserRouter>
Expand Down

0 comments on commit 5cd877c

Please sign in to comment.