diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index e3b5b64..4fb97bf 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -43,8 +43,6 @@ import SelectAndEditModeToggleButton from "./components/select-and-edit/SelectAn import { useAppStore } from "./store/app-store"; import KeyboardShortcutBadge from "./components/core/KeyboardShortcutBadge"; -const IS_OPENAI_DOWN = false; - function App() { const [appState, setAppState] = useState(AppState.INITIAL); const [generatedCode, setGeneratedCode] = useState(""); @@ -464,13 +462,6 @@ function App() { {IS_RUNNING_ON_CLOUD && !settings.openAiApiKey && } - {IS_OPENAI_DOWN && ( -
- OpenAI API is currently down. Try back in 30 minutes or later. We - apologize for the inconvenience. -
- )} - {(appState === AppState.CODING || appState === AppState.CODE_READY) && ( <>