Fixed: Duplicate changes in app updated modal

[common]
This commit is contained in:
Qstick 2022-06-03 23:40:36 -05:00
parent f890aadffa
commit fcebfe6759
1 changed files with 2 additions and 2 deletions

View File

@ -89,12 +89,12 @@ function AppUpdatedModalContent(props) {
<UpdateChanges
title={translate('New')}
changes={update.changes.new}
changes={Array.from(new Set(update.changes.new))}
/>
<UpdateChanges
title={translate('Fixed')}
changes={update.changes.fixed}
changes={Array.from(new Set(update.changes.fixed))}
/>
</div>
}