Init sentry first, then mount the app

Gets rid of a warning from the Sentry SDK
This commit is contained in:
Eli Ribble 2026-05-01 01:52:44 +00:00
parent 8757f1cda3
commit 503cde6063
No known key found for this signature in database

View file

@ -15,6 +15,6 @@ const pinia = createPinia();
app.use(head);
app.use(pinia);
app.use(router);
app.mount("#app");
sentry.Init(app, pinia);
sentry.Init(app, pinia).finally(() => {
app.mount("#app");
});