From 67896b23808a147c75706b7f8c06a32ddaf8139e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 4 Dec 2022 12:58:23 +0100 Subject: [PATCH] Removed references to pinia --- src/popup/main.ts | 3 +-- src/viewer/main.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/popup/main.ts b/src/popup/main.ts index 8b15756..cf39580 100644 --- a/src/popup/main.ts +++ b/src/popup/main.ts @@ -1,6 +1,5 @@ import { createApp } from "vue"; -//import { createPinia } from "pinia"; import App from "./Popup.vue"; -const app = createApp(App) //.use(createPinia()); +const app = createApp(App) app.mount('#app') diff --git a/src/viewer/main.ts b/src/viewer/main.ts index 38e466c..ae74f1c 100644 --- a/src/viewer/main.ts +++ b/src/viewer/main.ts @@ -1,6 +1,5 @@ import { createApp } from "vue"; -//import { createPinia } from "pinia"; import App from "./App.vue"; -const app = createApp(App) // .use(createPinia()); +const app = createApp(App) app.mount('#app')