feat: add create/edit link form + controller methods

This commit is contained in:
Sonny
2024-05-18 00:55:27 +02:00
committed by Sonny
parent 8176817030
commit 3c2c5dcee6
23 changed files with 421 additions and 147 deletions

View File

@@ -21,7 +21,9 @@ export default function LangSelector() {
defaultValue={i18n.language}
>
{languages.map((lang) => (
<option value={lang}>{t(`language.${lang}`)}</option>
<option value={lang} key={lang}>
{t(`language.${lang}`)}
</option>
))}
</select>
);