Fix warning from sentry setup

This commit is contained in:
Eli Ribble 2026-05-04 19:39:17 +00:00
parent dc2fee3a9d
commit b53c908b55
No known key found for this signature in database

View file

@ -22,5 +22,6 @@ const pinia = createPinia();
const app = createApp(App);
app.use(pinia);
app.use(router);
app.mount("#app");
sentry.Init(app, pinia);
sentry.Init(app, pinia).then(() => {
app.mount("#app");
});