From a339bb93ea4cab2bb3f15b5decca7e82a7bc2b42 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Fri, 13 Dec 2024 11:23:36 -0300 Subject: [PATCH] fix(legacy bookmark): add actionLabel in toast.success --- src/actions/interactions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/interactions.ts b/src/actions/interactions.ts index 4c06276d7..e4faf11a6 100644 --- a/src/actions/interactions.ts +++ b/src/actions/interactions.ts @@ -368,7 +368,7 @@ const bookmark = (status: StatusEntity) => dispatch(bookmarkSuccess(status, response.data)); toast.success(messages.bookmarkAdded, { - actionLink: '/bookmarks', + actionLink: '/bookmarks/all', actionLabel: messages.view, }); }).catch(function(error) { dispatch(bookmarkFail(status, error));