Skip to content

Commit

Permalink
fix(bookmark): resolve path (#431)
Browse files Browse the repository at this point in the history
# Description

Added bookmark resolve path missing / after app key 

> Please include a summary of the change and which issue is fixed.
List any external dependencies that are required for this change.

- [x] PR title and description are to the point and understandable
- [x] I have performed a self-review of my own code'

Please select version type the purposed change:
- [ ] major
- [ ] minor
- [x] patch
- [ ] none <!--- Creates an empty changeset --> 

External Relations
- [ ] database migration


## Changeset

<!--- Write your changeset here -->
Fixing bookmark resolve path for bookmark navigation

---------

Co-authored-by: Noggling <[email protected]>
  • Loading branch information
Noggling and Noggling authored Nov 1, 2023
1 parent 1765c60 commit 6cae79b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/pr-431-1582188051.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

---
"fusion-project-portal": patch
---
Fixing bookmark resolve path for bookmark navigation
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const style = css`
`;

export const PortalFrame = () => {
useBookmarkNavigate({ resolveAppPath: (appKey: string) => `/apps/${appKey}` });
useBookmarkNavigate({ resolveAppPath: (appKey: string) => `/apps/${appKey}/` });

return (
<StyleProvider>
Expand Down

0 comments on commit 6cae79b

Please sign in to comment.