use permanent url instead of uri
This ensures that when clicking on the notification, it goes to the correct URL. Before it could have been a different vanity URL.
This commit is contained in:
parent
b483e3f0d6
commit
babeccbf6c
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ export const doCheckPendingPublishes = () => (dispatch: Dispatch, getState: GetS
|
|||
notif.onclick = () => {
|
||||
dispatch(
|
||||
doNavigate('/show', {
|
||||
uri: claim.name,
|
||||
uri: claim.permanent_url,
|
||||
})
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue