refactor: remove unused translated name fields from character selection
Build Docker Image / build (push) Successful in 1m23s

This commit is contained in:
2026-07-10 19:40:17 +02:00
parent d3fafd75c6
commit b0c071e3dd
+1 -2
View File
@@ -6,8 +6,6 @@ const characterWithFruitSelect = {
id: character.id,
name: character.name,
frName: character.frName,
translatedName: character.translatedName,
frTranslatedName: character.frTranslatedName,
devilFruitId: character.devilFruitId,
devilFruitName: devilFruit.name,
devilFruitType: devilFruit.type,
@@ -18,6 +16,7 @@ const characterWithFruitSelect = {
export type CharacterWithFruit = Pick<Character, 'id' | 'name' | 'devilFruitId'> & {
devilFruitName: string | null;
devilFruitType: DevilFruitType | null;
frName: string | null;
url: string | null;
};