1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 09:58:13 +09:00

fix: properly render result from nta

This commit is contained in:
2021-07-02 16:47:49 +09:00
parent 7b0d997ca1
commit 0429667c36
2 changed files with 17 additions and 4 deletions

View File

@@ -97,6 +97,9 @@ const Community = () => {
const About = () => {
const { t } = useTranslation();
const {
i18n: { language },
} = useTranslation();
return (
<Pane>
@@ -157,6 +160,16 @@ const About = () => {
</OutboundLink>
</Links>
</ShareBox>
{language === 'ja' ? (
<>
<br />
<Title></Title>
<p>
Web-API機能を利用して取得した情報をもとに作成していますが
</p>
</>
) : null}
</Pane>
);
};