diff --git a/src/modules/category/components/CategorySettingsCard.tsx b/src/modules/category/components/CategorySettingsCard.tsx index eb977422..c9cf4edb 100644 --- a/src/modules/category/components/CategorySettingsCard.tsx +++ b/src/modules/category/components/CategorySettingsCard.tsx @@ -57,12 +57,12 @@ export const CategorySettingsCard = ({ - + - + diff --git a/src/modules/chapter/components/buttons/ChapterDownloadButton.tsx b/src/modules/chapter/components/buttons/ChapterDownloadButton.tsx index aa1bdc0b..c3bdbe48 100644 --- a/src/modules/chapter/components/buttons/ChapterDownloadButton.tsx +++ b/src/modules/chapter/components/buttons/ChapterDownloadButton.tsx @@ -45,7 +45,6 @@ export const ChapterDownloadButton = ({ e.preventDefault(); downloadChapter(); }} - size="large" > diff --git a/src/modules/chapter/components/buttons/ChapterDownloadRetryButton.tsx b/src/modules/chapter/components/buttons/ChapterDownloadRetryButton.tsx index 8e1543b8..2ec13893 100644 --- a/src/modules/chapter/components/buttons/ChapterDownloadRetryButton.tsx +++ b/src/modules/chapter/components/buttons/ChapterDownloadRetryButton.tsx @@ -40,7 +40,6 @@ export const ChapterDownloadRetryButton = ({ chapterId }: { chapterId: ChapterId e.stopPropagation(); handleRetry(); }} - size="large" > diff --git a/src/modules/chapter/components/cards/ChapterCard.tsx b/src/modules/chapter/components/cards/ChapterCard.tsx index 6d955002..b29088af 100644 --- a/src/modules/chapter/components/cards/ChapterCard.tsx +++ b/src/modules/chapter/components/cards/ChapterCard.tsx @@ -190,7 +190,6 @@ export const ChapterCard = memo((props: IProps) => { {...bindTrigger(popupState)} onClick={(e) => handleClickOpenMenu(e, popupState.open)} aria-label="more" - size="large" sx={{ color: 'inherit', ...applyStyles(mode === 'reader' && isActiveChapter, { diff --git a/src/modules/core/components/inputs/LangSelect.tsx b/src/modules/core/components/inputs/LangSelect.tsx index a743d3b0..9f70db0f 100644 --- a/src/modules/core/components/inputs/LangSelect.tsx +++ b/src/modules/core/components/inputs/LangSelect.tsx @@ -73,13 +73,7 @@ export function LangSelect(props: IProps) { return ( <> - setOpen(true)} - aria-label="display more actions" - edge="end" - color="inherit" - size="large" - > + setOpen(true)} aria-label="display more actions" edge="end" color="inherit"> diff --git a/src/modules/core/components/settings/MutableListSetting.tsx b/src/modules/core/components/settings/MutableListSetting.tsx index 36196763..13afbf49 100644 --- a/src/modules/core/components/settings/MutableListSetting.tsx +++ b/src/modules/core/components/settings/MutableListSetting.tsx @@ -50,7 +50,7 @@ const MutableListItem = ({ )} - + diff --git a/src/modules/downloads/screens/DownloadQueue.tsx b/src/modules/downloads/screens/DownloadQueue.tsx index bbac7688..6fa24e29 100644 --- a/src/modules/downloads/screens/DownloadQueue.tsx +++ b/src/modules/downloads/screens/DownloadQueue.tsx @@ -100,7 +100,6 @@ const DownloadChapterItem = memo( e.stopPropagation(); handleRetry(item.chapter); }} - size="large" > @@ -113,7 +112,6 @@ const DownloadChapterItem = memo( e.stopPropagation(); handleDelete(item.chapter); }} - size="large" > @@ -166,7 +164,7 @@ export const DownloadQueue: React.FC = () => { setAction( <> - + @@ -175,7 +173,7 @@ export const DownloadQueue: React.FC = () => { title={t(status === DownloaderState.Started ? 'global.button.start' : 'global.button.stop')} disabled={isQueueEmpty} > - + {status === DownloaderState.Stopped ? : } diff --git a/src/modules/extension/screens/Extensions.tsx b/src/modules/extension/screens/Extensions.tsx index 0186a2e8..67c996ab 100644 --- a/src/modules/extension/screens/Extensions.tsx +++ b/src/modules/extension/screens/Extensions.tsx @@ -153,7 +153,7 @@ export function Extensions({ tabsMenuHeight }: { tabsMenuHeight: number }) { <> - inputRef.current?.click()} size="large" color="inherit"> + inputRef.current?.click()} color="inherit"> diff --git a/src/modules/manga/components/MangaOptionButton.tsx b/src/modules/manga/components/MangaOptionButton.tsx index 03e54dda..9e2a6502 100644 --- a/src/modules/manga/components/MangaOptionButton.tsx +++ b/src/modules/manga/components/MangaOptionButton.tsx @@ -85,7 +85,6 @@ export const MangaOptionButton = forwardRef( {...bindTriggerProps} onClick={handleClick} aria-label="more" - size="large" onMouseDown={preventDefaultAction} > diff --git a/src/modules/migration/screens/Migration.tsx b/src/modules/migration/screens/Migration.tsx index 6bcba65d..424a34cc 100644 --- a/src/modules/migration/screens/Migration.tsx +++ b/src/modules/migration/screens/Migration.tsx @@ -125,7 +125,6 @@ export const Migration = ({ tabsMenuHeight }: { tabsMenuHeight: number }) => { > updateMetadataServerSettings('migrateSortSettings', { sortBy: (sortBy + 1) % 2, sortOrder }) @@ -136,7 +135,6 @@ export const Migration = ({ tabsMenuHeight }: { tabsMenuHeight: number }) => { updateMetadataServerSettings('migrateSortSettings', { diff --git a/src/modules/navigation-bar/components/DefaultNavBar.tsx b/src/modules/navigation-bar/components/DefaultNavBar.tsx index 610e09f9..bf3cc852 100644 --- a/src/modules/navigation-bar/components/DefaultNavBar.tsx +++ b/src/modules/navigation-bar/components/DefaultNavBar.tsx @@ -198,7 +198,6 @@ export function DefaultNavBar() { edge="start" component="button" sx={{ marginRight: 2 }} - size="large" aria-label="menu" onClick={handleBack} color="inherit" diff --git a/src/modules/reader/components/overlay/navigation/mobile/ReaderBottomBarMobile.tsx b/src/modules/reader/components/overlay/navigation/mobile/ReaderBottomBarMobile.tsx index 387e5197..893f7507 100644 --- a/src/modules/reader/components/overlay/navigation/mobile/ReaderBottomBarMobile.tsx +++ b/src/modules/reader/components/overlay/navigation/mobile/ReaderBottomBarMobile.tsx @@ -90,17 +90,17 @@ const BaseReaderBottomBarMobile = ({ }} > - + - + - + diff --git a/src/modules/source/screens/SourceMangas.tsx b/src/modules/source/screens/SourceMangas.tsx index d80e6981..8f253c81 100644 --- a/src/modules/source/screens/SourceMangas.tsx +++ b/src/modules/source/screens/SourceMangas.tsx @@ -411,7 +411,6 @@ export function SourceMangas() { aria-label="display more actions" edge="end" color="inherit" - size="large" > diff --git a/src/modules/source/screens/Sources.tsx b/src/modules/source/screens/Sources.tsx index 1da2d7c7..efc5d126 100644 --- a/src/modules/source/screens/Sources.tsx +++ b/src/modules/source/screens/Sources.tsx @@ -109,11 +109,7 @@ export function Sources() { setAction( <> - navigate(AppRoutes.sources.childRoutes.searchAll.path)} - size="large" - color="inherit" - > + navigate(AppRoutes.sources.childRoutes.searchAll.path)} color="inherit">