fix: replace 'No readable content found' with skeleton loader

Replace the confusing 'No readable content found for this URL' message that
appears during loading states with a skeleton loader for better UX.

This prevents users from seeing error messages while content is still loading.
This commit is contained in:
Gigi
2025-10-25 00:46:27 +02:00
parent 36b35367f1
commit 23ea7f352b

View File

@@ -976,8 +976,8 @@ const ContentPanel: React.FC<ContentPanelProps> = ({
)}
</>
) : (
<div className="reader empty">
<p>No readable content found for this URL.</p>
<div className="reader" aria-busy="true">
<ContentSkeleton />
</div>
)}
</div>