1
0
Fork 0

fix(gui): prevent client image history from accumulating indefinitely

This commit is contained in:
Sean Sube 2023-01-19 17:17:59 -06:00
parent 50fe17bce1
commit df7bba47dd
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ export function createStateSlices(base: ServerParams) {
history: [
image,
...prev.history,
],
].slice(0, prev.limit),
loading: null,
}));
},