diff --git a/src/routes/_actions/copyText.js b/src/routes/_actions/copyText.js index a05d6591..96416e4c 100644 --- a/src/routes/_actions/copyText.js +++ b/src/routes/_actions/copyText.js @@ -1,4 +1,4 @@ -import { importShowCopyDialog } from '../_components/dialog/asyncDialogs' +import { importShowCopyDialog } from '../_components/dialog/asyncDialogs/importShowCopyDialog.js' import { toast } from '../_components/toast/toast' export async function copyText (text) { diff --git a/src/routes/_actions/deleteAndRedraft.js b/src/routes/_actions/deleteAndRedraft.js index a66adc76..a2b4b7b4 100644 --- a/src/routes/_actions/deleteAndRedraft.js +++ b/src/routes/_actions/deleteAndRedraft.js @@ -1,5 +1,5 @@ import { statusHtmlToPlainText } from '../_utils/statusHtmlToPlainText' -import { importShowComposeDialog } from '../_components/dialog/asyncDialogs' +import { importShowComposeDialog } from '../_components/dialog/asyncDialogs/importShowComposeDialog.js' import { doDeleteStatus } from './delete' import { store } from '../_store/store' diff --git a/src/routes/_actions/instances.js b/src/routes/_actions/instances.js index 384dbae8..5701ee11 100644 --- a/src/routes/_actions/instances.js +++ b/src/routes/_actions/instances.js @@ -6,7 +6,7 @@ import { goto } from '../../../__sapper__/client' import { cacheFirstUpdateAfter } from '../_utils/sync' import { getInstanceInfo } from '../_api/instance' import { database } from '../_database/database' -import { importVirtualListStore } from '../_utils/asyncModules' +import { importVirtualListStore } from '../_utils/asyncModules/importVirtualListStore.js' export function changeTheme (instanceName, newTheme) { const { instanceThemes } = store.get() diff --git a/src/routes/_actions/mention.js b/src/routes/_actions/mention.js index a3e615b1..db70522b 100644 --- a/src/routes/_actions/mention.js +++ b/src/routes/_actions/mention.js @@ -1,4 +1,4 @@ -import { importShowComposeDialog } from '../_components/dialog/asyncDialogs' +import { importShowComposeDialog } from '../_components/dialog/asyncDialogs/importShowComposeDialog.js' import { store } from '../_store/store' export async function composeNewStatusMentioning (account) { diff --git a/src/routes/_actions/report.js b/src/routes/_actions/report.js index 63d7f461..65d06ac5 100644 --- a/src/routes/_actions/report.js +++ b/src/routes/_actions/report.js @@ -1,4 +1,4 @@ -import { importShowReportDialog } from '../_components/dialog/asyncDialogs' +import { importShowReportDialog } from '../_components/dialog/asyncDialogs/importShowReportDialog.js' export async function reportStatusOrAccount ({ status, account }) { const showReportDialog = await importShowReportDialog() diff --git a/src/routes/_actions/showShareDialogIfNecessary.js b/src/routes/_actions/showShareDialogIfNecessary.js index ef70a745..dcf0f231 100644 --- a/src/routes/_actions/showShareDialogIfNecessary.js +++ b/src/routes/_actions/showShareDialogIfNecessary.js @@ -1,5 +1,5 @@ import { store } from '../_store/store' -import { importShowComposeDialog } from '../_components/dialog/asyncDialogs' +import { importShowComposeDialog } from '../_components/dialog/asyncDialogs/importShowComposeDialog.js' export async function showShareDialogIfNecessary () { const { isUserLoggedIn, openShareDialog } = store.get() diff --git a/src/routes/_actions/toggleMute.js b/src/routes/_actions/toggleMute.js index 4db59300..d4387f67 100644 --- a/src/routes/_actions/toggleMute.js +++ b/src/routes/_actions/toggleMute.js @@ -1,4 +1,4 @@ -import { importShowMuteDialog } from '../_components/dialog/asyncDialogs' +import { importShowMuteDialog } from '../_components/dialog/asyncDialogs/importShowMuteDialog.js' import { setAccountMuted } from './mute' export async function toggleMute (account, mute) { diff --git a/src/routes/_components/Nav.html b/src/routes/_components/Nav.html index 352896f0..4a5c037d 100644 --- a/src/routes/_components/Nav.html +++ b/src/routes/_components/Nav.html @@ -50,7 +50,7 @@