diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..4e290a1 Binary files /dev/null and b/bun.lockb differ diff --git a/src/client/UtentiPage.tsx b/src/client/UtentiPage.tsx index 6ca4cf8..ebf2e2c 100644 --- a/src/client/UtentiPage.tsx +++ b/src/client/UtentiPage.tsx @@ -14,6 +14,9 @@ function applyPatches(users: User[]) { // capitalize the first letter of each word user.gecos = user.gecos.replace(/\b\w/g, c => c.toUpperCase()) }) + + // reverse the order of the users + users.reverse() } export const UtentiPage = () => {