renamed map object

This commit is contained in:
Polaris
2024-08-19 19:14:47 -04:00
parent b303fbcc9a
commit 552f737650
5 changed files with 14 additions and 11 deletions

View File

@ -108,9 +108,9 @@ export async function getSystemVoices() {
new Map(
AllSystemVoices.filter((matchingsystemVoiceIds) =>
unlockedSystemVoices.includes(matchingsystemVoiceIds.id),
).map((unlockedSystemVoice) => [
unlockedSystemVoice.id,
unlockedSystemVoice,
).map((unlockedSystemVoiceIds) => [
unlockedSystemVoiceIds.id,
unlockedSystemVoiceIds,
]),
).values(),
);