Skip to content

Commit

Permalink
refactor: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
luqven committed Jul 8, 2021
1 parent fe07777 commit b868c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/vue-imgix/ix-picture.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ensureVueImgixClientSingleton, IVueImgixClient } from './vue-imgix';
import { ensureVueImgixClientSingleton } from './vue-imgix';
import { defineComponent, h } from 'vue';

const IxPictureProps = defineComponent({
Expand All @@ -8,7 +8,7 @@ const IxPictureProps = defineComponent({
export const IxPicture = defineComponent({
mixins: [IxPictureProps],
render() {
const vueImgixSingleton: IVueImgixClient = ensureVueImgixClientSingleton();
ensureVueImgixClientSingleton();

return h('picture', this.$slots.default);
},
Expand Down

0 comments on commit b868c36

Please sign in to comment.