Files
InvokeAI/invokeai/frontend/web/src/features/changeBoardModal/store/initialState.ts
psychedelicious 4665f0df40 refactor(ui): use image names for selection instead of dtos
Update the frontend to incorporate the previous changes to how image
selection and general image identification is handled in the frontend.
2025-06-26 20:00:35 +10:00

7 lines
152 B
TypeScript

import type { ChangeBoardModalState } from './types';
export const initialState: ChangeBoardModalState = {
isModalOpen: false,
image_names: [],
};