fix: notification

This commit is contained in:
martabal 2024-01-19 15:56:13 +01:00
parent e6e7f78f9f
commit 4dc1067b4c
No known key found for this signature in database
GPG Key ID: C00196E3148A52BD

View File

@ -78,7 +78,7 @@ export const archiveAssets = async (
onArchive?.(ids, isArchived);
notificationController.show({
message: `${isArchived ? 'Archived' : 'Unarchived'} ${ids.length}`,
message: `${isArchived ? 'Archived' : 'Unarchived'} ${ids.length} asset${ids.length > 1 ? 's' : ''}`,
type: NotificationType.Info,
});