Skip to content

Commit

Permalink
fix: Removed not needed base path
Browse files Browse the repository at this point in the history
  • Loading branch information
josebui committed Oct 3, 2023
1 parent c094b03 commit 8886e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/navigation/navigationUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ export const generateReferrerPath = location => {
if (!referrer) {
return null;
}
return btoa(`/${referrer}`);
return btoa(referrer);
};

0 comments on commit 8886e87

Please sign in to comment.