Skip to content

Commit

Permalink
Tweak web card embed, trying to fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvicenti committed Nov 14, 2024
1 parent d7bcb93 commit a922446
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/apps/web/app/web-embeds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ function EmbedWrapper({
width="100%"
borderRightWidth={hideBorder ? 0 : 3}
borderRightColor={hideBorder ? "$colorTransparent" : "$brand8"}
onPress={() => {
onPress={(e) => {
e.preventDefault();
e.stopPropagation();
navigate(
createWebHMUrl(id.type, id.uid, {
hostname: null,
Expand Down

0 comments on commit a922446

Please sign in to comment.