Skip to content

Commit

Permalink
Don't retry if icon isn't in initial response (#88403)
Browse files Browse the repository at this point in the history
  • Loading branch information
John Schulz authored Jan 15, 2021
1 parent 1bd4086 commit 11d4457
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,7 @@ export const StepSelectPackage: React.FunctionComponent<{
return {
label: title || name,
key: pkgkey,
prepend: (
<PackageIcon
packageName={name}
version={version}
icons={icons}
size="m"
tryApi={true}
/>
),
prepend: <PackageIcon packageName={name} version={version} icons={icons} size="m" />,
checked: selectedPkgKey === pkgkey ? 'on' : undefined,
};
})}
Expand Down

0 comments on commit 11d4457

Please sign in to comment.