feat: use red offline icon for subplebbits that are most likely offline (ipns record fails to update)

This commit is contained in:
Tom (plebeius.eth)
2024-07-07 20:02:58 +02:00
parent a2347769e2
commit 9f7544936e
9 changed files with 46 additions and 30 deletions
+2 -2
View File
@@ -72,14 +72,14 @@ const Board = () => {
const loadingString = (
<div className={styles.stateString}>
{state === 'failed' ? (
state
<span className='red'>{state}</span>
) : isInSubscriptionsView && subscriptions?.length === 0 ? (
t('not_subscribed_to_any_board')
) : (
<LoadingEllipsis string={loadingStateString} />
)}
{error && (
<div style={{ color: 'red' }}>
<div className='red'>
<br />
{error.message}
</div>