diff --git a/src/lib/views/MyListView/MyListView.svelte b/src/lib/views/MyListView/MyListView.svelte index b408229..f128476 100644 --- a/src/lib/views/MyListView/MyListView.svelte +++ b/src/lib/views/MyListView/MyListView.svelte @@ -14,7 +14,7 @@ {#each $things as thing} - {@const thingName = isSpanish ? thing.spanishName : thing.name} + {@const thingName = isSpanish ? thing.spanishName ?? thing.name : thing.name} removeThing(thing.id)} {thingName}