Fixed roles page console warnings

This commit is contained in:
2025-10-19 20:32:28 -04:00
parent 5d7ebd2136
commit ad83c927e6
2 changed files with 112 additions and 130 deletions

View File

@@ -15,7 +15,7 @@ export async function getRoles(): Promise<Role[]> {
if (res.ok) {
return res.json() as Promise<Role[]>;
} else {
console.error("Something went wrong approving the application")
console.error("Something went wrong")
return [];
}
}