diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index 34c4c785f..a4363e25c 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -76,7 +76,6 @@ import FriendsList from '@/components/ui/friends/FriendsList.vue' import AddServerToInstanceModal from '@/components/ui/install_flow/AddServerToInstanceModal.vue' import IncompatibilityWarningModal from '@/components/ui/install_flow/IncompatibilityWarningModal.vue' import UnknownPackWarningModal from '@/components/ui/install_flow/UnknownPackWarningModal.vue' -import { check_all_connected_packs } from '@/helpers/connected-library' import MinecraftAuthErrorModal from '@/components/ui/minecraft-auth-error-modal/MinecraftAuthErrorModal.vue' import AppSettingsModal from '@/components/ui/modal/AppSettingsModal.vue' import AuthGrantFlowWaitModal from '@/components/ui/modal/AuthGrantFlowWaitModal.vue' @@ -95,6 +94,7 @@ import { hide_ads_window, init_ads_window, show_ads_window } from '@/helpers/ads import { debugAnalytics, initAnalytics, trackEvent } from '@/helpers/analytics' import { check_reachable } from '@/helpers/auth.js' import { get_user, get_version } from '@/helpers/cache.js' +import { check_all_connected_packs } from '@/helpers/connected-library' import { command_listener, warning_listener } from '@/helpers/events.js' import { cancelLogin, get as getCreds, login, logout } from '@/helpers/mr_auth.ts' import { create_profile_and_install_from_file } from '@/helpers/pack' diff --git a/apps/app-frontend/src/pages/library/Connected.vue b/apps/app-frontend/src/pages/library/Connected.vue index 706630cf7..8548f2d13 100644 --- a/apps/app-frontend/src/pages/library/Connected.vue +++ b/apps/app-frontend/src/pages/library/Connected.vue @@ -10,6 +10,7 @@ import { import { Button, Card, injectNotificationManager, ProgressSpinner, Toggle } from '@modrinth/ui' import { computed, onMounted, ref } from 'vue' +import type { ConnectedPack } from '@/helpers/connected-library' import { check_all_connected_packs, connect_pack, @@ -17,7 +18,6 @@ import { list_connected_packs, remove_connected_pack, set_connected_pack_auto_update, - type ConnectedPack, } from '@/helpers/connected-library' const { addNotification, handleError } = injectNotificationManager() diff --git a/apps/app-frontend/src/pages/library/index.js b/apps/app-frontend/src/pages/library/index.js index 1cdbb0b9a..36ff01b18 100644 --- a/apps/app-frontend/src/pages/library/index.js +++ b/apps/app-frontend/src/pages/library/index.js @@ -1,5 +1,5 @@ -import Custom from './Custom.vue' import Connected from './Connected.vue' +import Custom from './Custom.vue' import Downloaded from './Downloaded.vue' import Index from './Index.vue' import Modpacks from './Modpacks.vue'