change order

This commit is contained in:
Louis Mazin 2026-01-16 10:03:06 +01:00
parent 7bc62c939c
commit d150c4594f

View File

@ -113,7 +113,7 @@ const verifyLinkCode = async (code, steamId, palworldUsername, playerId = null)
const getAllLinks = async () => {
const connection = getConnection();
const [rows] = await connection.execute(
'SELECT discord_id, discord_username, steam_id, player_id, palworld_username, lastConnection, linked_at FROM user_links ORDER BY discord_username DESC'
'SELECT discord_id, discord_username, steam_id, player_id, palworld_username, lastConnection, linked_at FROM user_links ORDER BY discord_username'
);
return rows;
};