Skip to content

Commit

Permalink
fix: missing >
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Sep 10, 2024
1 parent a1cfb57 commit 0352204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/search/OptionImage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function Misc() {
return <Img src={miscIcon} alt={searchTab} maxHeight={45} maxWidth={45} />
}

/** @param {Partial<import('@rm/types').Quest & { id: string }> | { id: string, url?: string } | Partial<import('@rm/types').Pokemon> | Partial<import('@rm/types').Gym> | Partial<import('@rm/types').Pokestop> | { id: string, nest_pokemon_id: number, nest_pokemon_form?: number } | Partial<import('@rm/types').Invasion> & { id: string } | Partial<import('@rm/types').Station} props */
/** @param {Partial<import('@rm/types').Quest & { id: string }> | { id: string, url?: string } | Partial<import('@rm/types').Pokemon> | Partial<import('@rm/types').Gym> | Partial<import('@rm/types').Pokestop> | { id: string, nest_pokemon_id: number, nest_pokemon_form?: number } | Partial<import('@rm/types').Invasion> & { id: string } | Partial<import('@rm/types').Station>} props */
function OptionImage(props) {
if ('url' in props && props.url) return <FortImage url={props.url} />
if ('quest_reward_type' in props) return <QuestImage {...props} />
Expand Down

0 comments on commit 0352204

Please sign in to comment.