Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update sponsors #236

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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