Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
voloshinskii committed Apr 11, 2024
1 parent 50eda5e commit 93416a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class WalletContentReceiver {
public sortCellItems(cellItems: CellItemToRender[]): CellItemToRender[] {
let content: CellItemToRender[] = cellItems;

content = content.sort((a, b) => {
content = content.slice().sort((a, b) => {
const comparedPriority = b.renderPriority - a.renderPriority;

if (comparedPriority !== 0) {
Expand Down

0 comments on commit 93416a2

Please sign in to comment.