Updated the sorting of the programs

This commit is contained in:
Donny 2024-09-03 15:45:14 -06:00
parent 1780f9760b
commit e1020fd499

View File

@ -37,6 +37,7 @@
const data = await response.json(); const data = await response.json();
licenses = data; licenses = data;
licenses.sort((a, b) => a.program.localeCompare(b.program));
} catch (err) { } catch (err) {
error = `Failed to fetch licenses: ${err.message}`; error = `Failed to fetch licenses: ${err.message}`;
} }