From 802212c423a48e09497bf9f7aea57256b84ede17 Mon Sep 17 00:00:00 2001 From: Huang Xin Date: Thu, 16 Apr 2026 13:43:04 +0800 Subject: [PATCH] refactor: fixed typo in module name (#3881) --- apps/readest-app/src/app/library/components/OPDSDialog.tsx | 2 +- .../opds/components/{CatelogManager.tsx => CatalogManager.tsx} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename apps/readest-app/src/app/opds/components/{CatelogManager.tsx => CatalogManager.tsx} (100%) diff --git a/apps/readest-app/src/app/library/components/OPDSDialog.tsx b/apps/readest-app/src/app/library/components/OPDSDialog.tsx index 3cdb72cc..cf5e31f4 100644 --- a/apps/readest-app/src/app/library/components/OPDSDialog.tsx +++ b/apps/readest-app/src/app/library/components/OPDSDialog.tsx @@ -1,6 +1,6 @@ import { clsx } from 'clsx'; import { useEnv } from '@/context/EnvContext'; -import { CatalogManager } from '@/app/opds/components/CatelogManager'; +import { CatalogManager } from '@/app/opds/components/CatalogManager'; import { useTranslation } from '@/hooks/useTranslation'; import Dialog from '@/components/Dialog'; diff --git a/apps/readest-app/src/app/opds/components/CatelogManager.tsx b/apps/readest-app/src/app/opds/components/CatalogManager.tsx similarity index 100% rename from apps/readest-app/src/app/opds/components/CatelogManager.tsx rename to apps/readest-app/src/app/opds/components/CatalogManager.tsx