Skip to content

Commit

Permalink
fix for shareable link click (#1643)
Browse files Browse the repository at this point in the history
After the shareable link is created, user should be able to either click on the link or copy the link to navigate. The click link navigation was having an issue as it was redirected to "/". This PR fixes the bug.
  • Loading branch information
ravi-kumar-pilla authored Nov 17, 2023
1 parent 9b14ffa commit 01d1043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shareable-url-modal/shareable-url-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const ShareableUrlModal = ({ onToggleModal, visible }) => {
<div className="shareable-url-modal__url-wrapper">
<a
className="shareable-url-modal__result-url"
href="/"
href={responseUrl}
target="_blank"
rel="noopener noreferrer"
>
Expand Down

0 comments on commit 01d1043

Please sign in to comment.