mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 18:44:04 +03:00
fix: incorrect bookmark toast text (#2815)
Co-authored-by: Alex Yang <himself65@outlook.com>
This commit is contained in:
parent
c649995a7a
commit
3755661ff6
@ -209,11 +209,10 @@ export const BlockSuitePageList: React.FC<BlockSuitePageListProps> = ({
|
||||
toast(t['restored']({ title: pageMeta.title || 'Untitled' }));
|
||||
},
|
||||
bookmarkPage: () => {
|
||||
const status = pageMeta.favorite;
|
||||
toggleFavorite(pageMeta.id);
|
||||
toast(
|
||||
pageMeta.favorite
|
||||
? t['Removed from Favorites']()
|
||||
: t['Added to Favorites']()
|
||||
status ? t['Removed from Favorites']() : t['Added to Favorites']()
|
||||
);
|
||||
},
|
||||
onDisablePublicSharing: () => {
|
||||
|
Loading…
Reference in New Issue
Block a user