diff --git a/frontend/__tests__/routes/_oh.test.tsx b/frontend/__tests__/routes/_oh.test.tsx index 336415f64059..1ce376e8d133 100644 --- a/frontend/__tests__/routes/_oh.test.tsx +++ b/frontend/__tests__/routes/_oh.test.tsx @@ -40,7 +40,7 @@ describe("frontend/routes/_oh", () => { await screen.findByTestId("root-layout"); }); - it("should render the AI config modal if settings are not up-to-date", async () => { + it.skip("should render the AI config modal if settings are not up-to-date", async () => { settingsAreUpToDateMock.mockReturnValue(false); renderWithProviders(); diff --git a/frontend/src/routes/_oh/route.tsx b/frontend/src/routes/_oh/route.tsx index e242ae4bc58e..b23c23be20dd 100644 --- a/frontend/src/routes/_oh/route.tsx +++ b/frontend/src/routes/_oh/route.tsx @@ -9,7 +9,6 @@ import { useConfig } from "#/hooks/query/use-config"; import { Sidebar } from "#/components/features/sidebar/sidebar"; import { WaitlistModal } from "#/components/features/waitlist/waitlist-modal"; import { AnalyticsConsentFormModal } from "#/components/features/analytics/analytics-consent-form-modal"; -import { SettingsModal } from "#/components/shared/modals/settings/settings-modal"; export function ErrorBoundary() { const error = useRouteError(); @@ -45,15 +44,12 @@ export function ErrorBoundary() { export default function MainApp() { const { gitHubToken } = useAuth(); - const { settings, settingsAreUpToDate } = useSettings(); + const { settings } = useSettings(); const [consentFormIsOpen, setConsentFormIsOpen] = React.useState( !localStorage.getItem("analytics-consent"), ); - const [aiConfigModalIsOpen, setAiConfigModalIsOpen] = - React.useState(!settingsAreUpToDate); - const config = useConfig(); const { data: isAuthed, isFetching: isFetchingAuth } = useIsAuthed(); @@ -92,13 +88,6 @@ export default function MainApp() { onClose={() => setConsentFormIsOpen(false)} /> )} - - {aiConfigModalIsOpen && ( - setAiConfigModalIsOpen(false)} - data-testid="ai-config-modal" - /> - )} ); }