Skip to content

Commit 15b9c15

Browse files
committedMar 13, 2025
fix: only display probability if available
1 parent 0c2b06e commit 15b9c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/features/pokestop/PokestopPopup.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export function PokestopPopup({
129129
}}
130130
>
131131
<QuestConditions {...quest} />
132-
{quest.quest_shiny_probability !== null && (
132+
{quest.quest_shiny_probability && (
133133
<>
134134
<br />
135135
<Typography variant="caption">

0 commit comments

Comments
 (0)