fix: android banner DownloadButton onClick should not propagate up (#7611)

* android banner link - remove linktarget

* stop propagation?

* linter
This commit is contained in:
Kristie Huang 2023-11-20 12:36:02 -05:00 committed by GitHub
parent 1ffaf723de
commit 1d1b15f4ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,7 +48,12 @@ export default function AndroidAnnouncementBanner() {
<ThemedText.LabelMicro> <ThemedText.LabelMicro>
<Trans>Available now - download from the Google Play Store today</Trans> <Trans>Available now - download from the Google Play Store today</Trans>
</ThemedText.LabelMicro> </ThemedText.LabelMicro>
<DownloadButton onClick={onClick}> <DownloadButton
onClick={(e) => {
e.stopPropagation()
onClick()
}}
>
<Trans>Download now</Trans> <Trans>Download now</Trans>
</DownloadButton> </DownloadButton>
</TextContainer> </TextContainer>