Simpl-Resultat/src/main.tsx
le king fu d604d5ae63
Some checks failed
Release / build-and-release (push) Has been cancelled
Fix updater latest.json and add log viewer in settings
Fix updater: strip v-prefix from version in latest.json, and delete
old package before re-uploading to avoid 409 conflicts.
Add frontend log capture (console intercept) with a log viewer card
in the settings page (filterable, copyable, clearable).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-28 21:09:10 -05:00

20 lines
569 B
TypeScript

import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import { ProfileProvider } from "./contexts/ProfileContext";
import ErrorBoundary from "./components/shared/ErrorBoundary";
import { initLogCapture } from "./services/logService";
import "./i18n/config";
import "./styles.css";
initLogCapture();
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<ProfileProvider>
<ErrorBoundary>
<App />
</ErrorBoundary>
</ProfileProvider>
</React.StrictMode>,
);