Fixed: Duplicate changes in app updated modal

[common]
pull/7333/head
Qstick 3 years ago
parent f890aadffa
commit fcebfe6759

@ -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>
}

Loading…
Cancel
Save