Removed console log

This commit is contained in:
Jannik Tappert 2024-05-16 13:07:40 +02:00
parent 2397b9d65f
commit f4a8de9071

View File

@ -416,9 +416,7 @@ export class TrainerConfig {
// Handle name by checking this.name - making it lowercase and replacing spaces with underscores and then calling i18next.t with the name
const nameForCall = this.name.toLowerCase().replace(/\s/g, '_');
console.log(nameForCall)
this.name = i18next.t(`trainerNames:${nameForCall}`);
console.log(this.name)