fix: ai hallucination

This commit is contained in:
Timothy Jaeryang Baek 2025-09-29 21:37:38 -05:00
parent 887772db22
commit 58efa18f96

View file

@ -56,8 +56,7 @@
let showDefaultPermissionsModal = false;
const setGroups = async () => {
const allGroups = await getGroups(localStorage.token);
groups = allGroups.filter((g) => g.name.toLowerCase() !== 'user');
groups = await getGroups(localStorage.token);
};
const addGroupHandler = async (group) => {