show addresses in front

This commit is contained in:
grimhilt
2023-04-03 20:37:07 +02:00
parent 6b4264fccc
commit fd253197cc
9 changed files with 317 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
export function removeDuplicates(array: []) {
let unique = [];
const unique = [];
for (let i = 0; i < array.length; i++) {
if (!unique.includes(array[i])) {
unique.push(array[i]);