mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix eslint
This commit is contained in:
@@ -148,7 +148,7 @@ const PostFormTable = ({ closeForm }: { closeForm: () => void }) => {
|
|||||||
resetFields();
|
resetFields();
|
||||||
closeForm();
|
closeForm();
|
||||||
}
|
}
|
||||||
}, [replyIndex, resetContent]);
|
}, [replyIndex, resetContent, closeForm]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<table className={styles.postFormTable}>
|
<table className={styles.postFormTable}>
|
||||||
|
|||||||
+10
-11
@@ -89,17 +89,16 @@ const Board = () => {
|
|||||||
{feed.length > 0 && (
|
{feed.length > 0 && (
|
||||||
<>
|
<>
|
||||||
{rules && rules.length > 0 && <SubplebbitRules subplebbitAddress={subplebbitAddress} createdAt={createdAt} rules={rules} />}
|
{rules && rules.length > 0 && <SubplebbitRules subplebbitAddress={subplebbitAddress} createdAt={createdAt} rules={rules} />}
|
||||||
{(description && description.length > 0) ||
|
{((description && description.length > 0) || isInAllView) && (
|
||||||
(isInAllView && (
|
<SubplebbitDescription
|
||||||
<SubplebbitDescription
|
avatarUrl={suggested?.avatarUrl}
|
||||||
avatarUrl={suggested?.avatarUrl}
|
subplebbitAddress={subplebbitAddress}
|
||||||
subplebbitAddress={subplebbitAddress}
|
createdAt={createdAt}
|
||||||
createdAt={createdAt}
|
description={description}
|
||||||
description={description}
|
shortAddress={shortAddress}
|
||||||
shortAddress={shortAddress}
|
title={title}
|
||||||
title={title}
|
/>
|
||||||
/>
|
)}
|
||||||
))}
|
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<Virtuoso
|
<Virtuoso
|
||||||
|
|||||||
Reference in New Issue
Block a user