mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-12 23:35:12 -05:00
Update the frontend to incorporate the previous changes to how image selection and general image identification is handled in the frontend.
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
import type { ChangeBoardModalState } from './types';
|
|
|
|
export const initialState: ChangeBoardModalState = {
|
|
isModalOpen: false,
|
|
image_names: [],
|
|
};
|