diff --git a/src/screens/SourceMangas.tsx b/src/screens/SourceMangas.tsx
index 4c98d451..742a2479 100644
--- a/src/screens/SourceMangas.tsx
+++ b/src/screens/SourceMangas.tsx
@@ -343,13 +343,16 @@ export function SourceMangas() {
>
{t('global.button.popular')}
- }
- onClick={() => updateContentType(SourceContentType.LATEST)}
- >
- {t('global.button.latest')}
-
+ {source?.supportsLatest === undefined || source.supportsLatest ? (
+ }
+ onClick={() => updateContentType(SourceContentType.LATEST)}
+ >
+ {t('global.button.latest')}
+
+ ) : null}
}