From 4abee41e15a35c3ffad30212d43674c7cffb5f31 Mon Sep 17 00:00:00 2001 From: Alex Lloyd Date: Thu, 7 Dec 2023 18:18:39 -0600 Subject: [PATCH] Remove redundant comment --- frontend/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/types.ts b/frontend/src/types.ts index 653b648..6c812a7 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -9,6 +9,7 @@ export enum GeneratedCodeConfig { REACT_TAILWIND = "react_tailwind", BOOTSTRAP = "bootstrap", IONIC_TAILWIND = "ionic_tailwind", + REACT_MUI_COMPONENT = "react_mui_component", } export interface Settings { @@ -34,7 +35,6 @@ export interface CodeGenerationParams { image: string; resultImage?: string; history?: string[]; - // isImageGenerationEnabled: boolean; // TODO: Merge with Settings type in types.ts } export type FullGenerationSettings = CodeGenerationParams & Settings;