chore: object shorthand linting rule (#12152)

chore: object shorthand
This commit is contained in:
Jason Rasmussen
2024-08-30 14:38:53 -04:00
committed by GitHub
parent 40854f358c
commit 5e6ac87eaf
23 changed files with 30 additions and 28 deletions

View File

@@ -40,7 +40,7 @@
const count = results.filter(({ success }) => success).length;
notificationController.show({
type: NotificationType.Info,
message: $t('assets_removed_count', { values: { count: count } }),
message: $t('assets_removed_count', { values: { count } }),
});
clearSelect();

View File

@@ -45,7 +45,7 @@
notificationController.show({
type: NotificationType.Info,
message: $t('assets_removed_count', { values: { count: count } }),
message: $t('assets_removed_count', { values: { count } }),
});
clearSelect();