fix(strings): remove some trailing spaces

This commit is contained in:
Sabe Jones
2019-03-07 13:28:05 -06:00
parent bb395a7ad8
commit 431cec7634
2 changed files with 3 additions and 3 deletions

View File

@@ -265,7 +265,7 @@ api.armoire = {
if (user.flags.armoireEmpty) { if (user.flags.armoireEmpty) {
return t('armoireNotesEmpty')(); return t('armoireNotesEmpty')();
} }
return t('armoireNotesFull')() + count; return `${t('armoireNotesFull')()} ${count}`;
}, },
value: 100, value: 100,
key: 'armoire', key: 'armoire',