Update src/data/pokemon-species.ts

Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com>
This commit is contained in:
mercurius-00 2024-08-14 13:32:05 +08:00 committed by GitHub
parent f033f05ec4
commit b0c60e61b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -66,8 +66,7 @@ export function getFusedSpeciesName(speciesA: PokemonSpecies, speciesB: PokemonS
prefix = desKey;
suffix = radKey;
}
const fusedName =`${prefix}${suffix}`;
return fusedName;
return `${prefix}${suffix}`;
}
export type PokemonSpeciesFilter = (species: PokemonSpecies) => boolean;