mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
fix: ai hallucination
This commit is contained in:
parent
887772db22
commit
58efa18f96
1 changed files with 1 additions and 2 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue