Skip to content

Commit

Permalink
UHF-11462: Updating initialUrlAtom in linkedevents to not include the…
Browse files Browse the repository at this point in the history
… query parameters twice.
  • Loading branch information
wktohesi committed Feb 18, 2025
1 parent dc0f8d4 commit c9e1d9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/js/linkedevents.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/js/react/apps/linkedevents/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const baseUrlAtom = atom(

export const initialUrlAtom = atom(
(get) => {
const baseUrl = get(baseAtom)?.initialUrl;
const baseUrl = get(baseAtom)?.baseUrl;
const initialParams = get(initialParamsAtom);

return `${baseUrl}?${initialParams.toString()}`;
Expand Down

0 comments on commit c9e1d9e

Please sign in to comment.