Skip to content

Commit f78c83d

Browse files
committed
Fix import order
1 parent 6742338 commit f78c83d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

client/src/entry/analysis/App.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,14 @@ import { useEntryPointStore } from "@/stores/entryPointStore";
6666
import { useNotificationsStore } from "@/stores/notificationsStore";
6767
import { useTourStore } from "@/stores/tourStore";
6868
import { useUserStore } from "@/stores/userStore";
69+
import { startWatchingHistory } from "@/watch/watchHistoryProvided";
6970
7071
import Alert from "@/components/Alert.vue";
7172
import DragGhost from "@/components/DragGhost.vue";
73+
import Masthead from "@/components/Masthead/Masthead.vue";
7274
import BroadcastsOverlay from "@/components/Notifications/Broadcasts/BroadcastsOverlay.vue";
7375
import TourRunner from "@/components/Tour/TourRunner.vue";
74-
import Masthead from "components/Masthead/Masthead.vue";
75-
import UploadModal from "components/Upload/UploadModal.vue";
76-
77-
import { startWatchingHistory } from "watch/watchHistoryProvided";
76+
import UploadModal from "@/components/Upload/UploadModal.vue";
7877
7978
export default {
8079
components: {

0 commit comments

Comments
 (0)