fix: incorrect bookmark toast text (#2815)

Co-authored-by: Alex Yang <himself65@outlook.com>
This commit is contained in:
Peng Xiao
2023-06-20 19:14:15 +08:00
committed by GitHub
parent c649995a7a
commit 3755661ff6
@@ -209,11 +209,10 @@ export const BlockSuitePageList: React.FC<BlockSuitePageListProps> = ({
toast(t['restored']({ title: pageMeta.title || 'Untitled' })); toast(t['restored']({ title: pageMeta.title || 'Untitled' }));
}, },
bookmarkPage: () => { bookmarkPage: () => {
const status = pageMeta.favorite;
toggleFavorite(pageMeta.id); toggleFavorite(pageMeta.id);
toast( toast(
pageMeta.favorite status ? t['Removed from Favorites']() : t['Added to Favorites']()
? t['Removed from Favorites']()
: t['Added to Favorites']()
); );
}, },
onDisablePublicSharing: () => { onDisablePublicSharing: () => {