Skip to content

Commit

Permalink
Remove hash from url for static content, to make page more stable
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfalke committed Nov 25, 2024
1 parent aff9a57 commit 81c7025
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/libs/web-common/src/routes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,7 @@ export const wrapRoutes = (wdkRoutes) => [
requiresLogin: false,
component: (props) => (
<ExternalContentController
url={
communitySite +
props.match.params.path +
props.location.search +
props.location.hash
}
url={communitySite + props.match.params.path + props.location.search}
/>
),
},
Expand Down

0 comments on commit 81c7025

Please sign in to comment.