Skip to content

Commit

Permalink
fix: invalid imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nextchamp-saqib committed Dec 10, 2024
1 parent d6a0bdf commit 4cd94f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions frontend/src2/charts/components/DimensionPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { ChevronDown, Settings, XIcon } from 'lucide-vue-next'
import InlineFormControlLabel from '../../components/InlineFormControlLabel.vue'
import { isDate } from '../../helpers'
import { granularityOptions } from '../../helpers/constants'
import { Dimension } from '../../types/query.types'
import { DimensionOption } from './ChartConfigForm.vue'
import { Dimension, DimensionOption } from '../../types/query.types'
const emit = defineEmits({ remove: () => true })
const props = defineProps<{
Expand Down
3 changes: 1 addition & 2 deletions frontend/src2/charts/components/SplitByConfig.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script setup lang="ts">
import InlineFormControlLabel from '../../components/InlineFormControlLabel.vue'
import { AxisChartConfig } from '../../types/chart.types'
import { DimensionOption } from './ChartConfigForm.vue'
import { DimensionOption } from '../../types/query.types'
import CollapsibleSection from './CollapsibleSection.vue'
import DimensionPicker from './DimensionPicker.vue'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src2/charts/components/XAxisConfig.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import InlineFormControlLabel from '../../components/InlineFormControlLabel.vue'
import { AxisChartConfig } from '../../types/chart.types'
import { DimensionOption } from './ChartConfigForm.vue'
import { DimensionOption } from '../../types/query.types'
import CollapsibleSection from './CollapsibleSection.vue'
import DimensionPicker from './DimensionPicker.vue'
Expand Down

0 comments on commit 4cd94f8

Please sign in to comment.