diff --git a/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte b/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte index b2eced9..690b3cf 100644 --- a/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte +++ b/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte @@ -49,7 +49,9 @@ {#if showForms}

Can Gigantamax: {pokedexEntry.canGigantamax ? 'Yes' : 'No'}

{/if} -

Notes: {pokedexEntry.notes}

+ {#if pokedexEntry.notes} +

Notes: {pokedexEntry.notes}

+ {/if}