Skip to content

Commit

Permalink
fix group sync
Browse files Browse the repository at this point in the history
  • Loading branch information
moscicky committed Aug 8, 2024
1 parent 40407a1 commit e223eea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const useConsistencyStore = defineStore('consistency', {
}
if (groupIndex == -1) return;
if (refreshedGroup.length == 0) {
this.groups = this.groups.splice(groupIndex, 1);
this.groups.splice(groupIndex, 1);
} else {
this.groups[groupIndex] = refreshedGroup[0];
}
Expand Down

0 comments on commit e223eea

Please sign in to comment.