Skip to content

Commit

Permalink
Fix relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSimCity committed Jan 10, 2024
1 parent e847691 commit 3aa66ba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/sidebar/SidebarItem.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import type { NuxtIconName } from "#build/nuxt-icons";
import type { RoutesNamedLocations } from "@typed-router";
import type { NuxtIconName } from "#build/nuxt-icons";
withDefaults(
defineProps<{
Expand Down
4 changes: 2 additions & 2 deletions components/track/TrackItem.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import type { NuxtIconName } from ".nuxt/nuxt-icons";
import type { RoutesNamedLocations } from ".nuxt/typed-router";
import type { NuxtIconName } from "~/.nuxt/nuxt-icons";
import type { RoutesNamedLocations } from "~/.nuxt/typed-router";
import type { TrackModel } from "@bcc-code/bmm-sdk-fetch";
import { Menu, MenuButton, MenuItem, MenuItems } from "@headlessui/vue";
Expand Down
3 changes: 1 addition & 2 deletions pages/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import type {
SearchResults,
TrackModel,
} from "@bcc-code/bmm-sdk-fetch";
import { watchDebounced } from "@vueuse/core";
import type { IDiscoverableGroup } from "composables/discover";
import type { IDiscoverableGroup } from "~/composables/discover";
const { t } = useI18n();
toolbarTitleStore().setReactiveToolbarTitle(() => t("nav.search"));
Expand Down
2 changes: 1 addition & 1 deletion plugins/mediaPlayer/mediaPlayer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { Mock } from "vitest";
import type { TrackModel } from "@bcc-code/bmm-sdk-fetch";
import { flushPromises } from "@vue/test-utils";
import type { UnwrapRef } from "vue";
import type { IUserData } from "plugins/2.userData";
import type { IUserData } from "../2.userData";
import type { AppInsights } from "../3.applicationInsights";
import Queue from "./Queue";
import MediaTrack from "./MediaTrack";
Expand Down
4 changes: 2 additions & 2 deletions plugins/mediaPlayer/mediaPlayer.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { StatisticsApi } from "@bcc-code/bmm-sdk-fetch";
import type { TrackModel } from "@bcc-code/bmm-sdk-fetch";
import type { UnwrapRef } from "vue";
import type { IUserData } from "plugins/2.userData";
import type { AppInsights } from "plugins/3.applicationInsights";
import type { IUserData } from "../2.userData";
import type { AppInsights } from "../3.applicationInsights";
import MediaTrack from "./MediaTrack";
import Queue from "./Queue";

Expand Down

0 comments on commit 3aa66ba

Please sign in to comment.