From 606f535bc287ec88cbb268fbac6a12a9068e3738 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Thu, 27 Jun 2024 16:24:06 +0800 Subject: [PATCH] enable Select and Edit for HTML + CSS stack --- frontend/src/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index bef14d0..952d9d3 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -104,7 +104,8 @@ function App() { (selectedCodeGenerationModel === CodeGenerationModel.GPT_4O_2024_05_13 || selectedCodeGenerationModel === CodeGenerationModel.CLAUDE_3_5_SONNET_2024_06_20) && - settings.generatedCodeConfig === Stack.HTML_TAILWIND; + (settings.generatedCodeConfig === Stack.HTML_TAILWIND || + settings.generatedCodeConfig === Stack.HTML_CSS); // Indicate coding state using the browser tab's favicon and title useBrowserTabIndicator(appState === AppState.CODING);