From 1cd712ebb9801ec9f6e7d99ceaf3adf4841d481b Mon Sep 17 00:00:00 2001 From: cloudneutral Date: Sat, 6 Dec 2025 11:21:30 +0800 Subject: [PATCH] Fix download page type import (#755) --- dashboard/src/app/download/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/app/download/page.tsx b/dashboard/src/app/download/page.tsx index ea73f43..69d817f 100644 --- a/dashboard/src/app/download/page.tsx +++ b/dashboard/src/app/download/page.tsx @@ -7,7 +7,7 @@ import DownloadSummary from '../../components/download/DownloadSummary' import { buildDownloadSections, countFiles, findListing } from '../../lib/download-data' import { getDownloadListings } from '../../lib/download/dl-index-data-artifacts' import { getOfflinePackageSections, getOfflinePackageFileCount } from '../../lib/download/dl-index-data-offline-package' -import type { DirEntry } from '../../../../types/download' +import type { DirEntry } from '../../lib/download/types' import { isFeatureEnabled } from '@lib/featureToggles' export default async function DownloadHome() {