|
|
@@ -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 && (
|
|
|
- <SettingsModal
|
|
|
- onClose={() => setAiConfigModalIsOpen(false)}
|
|
|
- data-testid="ai-config-modal"
|
|
|
- />
|
|
|
- )}
|
|
|
</div>
|
|
|
);
|
|
|
}
|