Skip to content

Commit

Permalink
fix: remove invalid import
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Mar 11, 2024
1 parent b0f04d6 commit 2e355ce
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions apps/ui/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { createPinia } from 'pinia';
import { LockPlugin } from '@snapshot-labs/lock/plugins/vue3';
import VueTippy from 'vue-tippy';
import options from '@/helpers/auth';
import App from '@/App.vue';
import router from '@/router';
Expand All @@ -22,11 +21,7 @@ if (window !== window.parent && !knownHosts.includes(parentHost)) {
const pinia = createPinia();
const app = createApp({ render: () => h(App) })
.use(router)
.use(LockPlugin, options)
.use(VueTippy, {
defaultProps: { delay: [100, null] },
directive: 'tippy'
});
.use(LockPlugin, options);

app.use(pinia);

Expand Down

0 comments on commit 2e355ce

Please sign in to comment.