Skip to content

Commit

Permalink
remove useless imports
Browse files Browse the repository at this point in the history
  • Loading branch information
victorcg88 committed Jul 26, 2024
1 parent 947a3f5 commit 40b95b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/x-components/src/store/x.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type XModuleState = { [Key in keyof RootXStoreState['x']]: null };
*
* @internal
*/
export const RootXStoreModule: Module<XModuleState, any> = {
state: () => ({} as XModuleState),
export const RootXStoreModule: Module<any, any> = {
state: () => ({}),
namespaced: true
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { Facet, Filter, isHierarchicalFacet } from '@empathyco/x-types';
import { computed, defineComponent, h, PropType, Ref, ref, watch } from 'vue';
import { computed, defineComponent, PropType, Ref, ref, watch } from 'vue';
import { clone } from '../../../../utils';
import { areFiltersDifferent } from '../../../../utils/filters';
import { GroupId } from '../../store/types';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { Dictionary } from '@empathyco/x-utils';
import { computed, defineComponent, h, PropType } from 'vue';
import { computed, defineComponent, PropType } from 'vue';
import { BooleanFilter } from '@empathyco/x-types';
import { useXBus } from '../../../../composables/use-x-bus';
import { XEvent, XEventsTypes } from '../../../../wiring/events.types';
Expand Down

0 comments on commit 40b95b7

Please sign in to comment.