Skip to content

Commit

Permalink
Merge pull request #687 from raspiblitz/fix-double-open-btn
Browse files Browse the repository at this point in the history
fix open button appearing two times for electrs
  • Loading branch information
cstenglein authored Feb 26, 2024
2 parents cf36477 + 8b841c6 commit e5b3d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Apps/AppCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const AppCard: FC<Props> = ({
</div>
</div>
<div className="flex flex-row gap-2 py-4">
{installed && appStatusInfo.address && (
{installed && appStatusInfo.address && !appInfo.customComponent && (
<a
href={getHrefFromApp(appStatusInfo)}
target="_blank"
Expand Down

0 comments on commit e5b3d10

Please sign in to comment.