mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
fix: dont pass the systems member list to a new group
all it needed was an empty array... sometimes i have a brain moment
This commit is contained in:
parent
c3f5808c9c
commit
95f5f85a1c
1 changed files with 1 additions and 1 deletions
|
|
@ -175,7 +175,7 @@
|
||||||
|
|
||||||
function addGroupToList(event: any) {
|
function addGroupToList(event: any) {
|
||||||
let group = event.detail;
|
let group = event.detail;
|
||||||
group.members = members;
|
group.members = [];
|
||||||
list.push(group);
|
list.push(group);
|
||||||
list = list;
|
list = list;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue