fix rank creation error
Some checks failed
CI/CD Pipeline / test (push) Successful in 2s
CI/CD Pipeline / deploy (push) Failing after 1s

This commit is contained in:
Micha
2026-01-18 17:33:44 +01:00
parent 761a89d241
commit 1b3056f078

View File

@@ -742,7 +742,9 @@ export default function Acp({ isAdmin }) {
}, [isAdmin])
const handleCreateRank = async (event) => {
event.preventDefault()
if (event?.preventDefault) {
event.preventDefault()
}
if (!rankFormName.trim()) return
if (rankFormType === 'image' && !rankFormImage) {
setRanksError(t('rank.badge_image_required'))