Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreezag committed Dec 22, 2024
1 parent 0dc134e commit 04cb10a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/entities/profiler/ui/call-graph/call-graph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import type { ElementsDefinition } from 'cytoscape'
import { ref, computed, onMounted, watchEffect } from 'vue'
import { type EventId, GraphTypes } from '@/shared/types'
import { IconSvg, type StatBoardCost } from '@/shared/ui'
import { IconSvg } from '@/shared/ui'
import { useProfiler } from '../../lib'
import type { ProfilerCallGraph } from '../../types'
import type { ProfilerCallGraph, StatBoardCost } from '../../types'
import { CallStatBoard } from '../call-stat-board'
import { RenderGraph } from '../render-graph'
Expand Down
3 changes: 1 addition & 2 deletions src/entities/profiler/ui/flame-graph/flame-graph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import { FlameChart } from 'flame-chart-js'
import debounce from 'lodash.debounce'
import { ref, onMounted, nextTick, onBeforeUnmount, computed } from 'vue'
import type { EventId } from '@/shared/types'
import type { StatBoardCost } from '@/shared/ui'
import { useProfiler } from '../../lib'
import type { CallStackHoverData } from '../../types'
import type { CallStackHoverData, StatBoardCost } from '../../types'
import { CallStatBoard } from '../../ui/call-stat-board'
type Props = {
Expand Down

0 comments on commit 04cb10a

Please sign in to comment.