feat(ui): update client for removal of session events

This commit is contained in:
psychedelicious
2024-05-26 11:41:08 +10:00
parent 3d8774d295
commit 60784a4361
7 changed files with 1 additions and 76 deletions

View File

@ -11,7 +11,6 @@ import {
socketModelLoadComplete,
socketModelLoadStarted,
socketQueueItemStatusChanged,
socketSessionComplete,
} from 'services/events/actions';
import type { Language, SystemState } from './types';
@ -125,14 +124,6 @@ export const systemSlice = createSlice({
state.status = 'CONNECTED';
});
/**
* Graph Execution State Complete
*/
builder.addCase(socketSessionComplete, (state) => {
state.denoiseProgress = null;
state.status = 'CONNECTED';
});
builder.addCase(socketModelLoadStarted, (state) => {
state.status = 'LOADING_MODEL';
});