mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix(publish reply): error "content is an empty string" could appear
This commit is contained in:
@@ -11,9 +11,9 @@ const usePublishReply = ({ cid, subplebbitAddress }: { cid: string; subplebbitAd
|
|||||||
const { author, signer, content, link, spoiler, publishCommentOptions } = usePublishReplyStore((state) => ({
|
const { author, signer, content, link, spoiler, publishCommentOptions } = usePublishReplyStore((state) => ({
|
||||||
author: state.author[parentCid] || (account?.author ? { displayName: account.author.displayName || undefined } : undefined),
|
author: state.author[parentCid] || (account?.author ? { displayName: account.author.displayName || undefined } : undefined),
|
||||||
displayName: state.displayName[parentCid] || account?.author?.displayName,
|
displayName: state.displayName[parentCid] || account?.author?.displayName,
|
||||||
signer: state.signer[parentCid],
|
signer: state.signer[parentCid] || undefined,
|
||||||
content: state.content[parentCid] || '',
|
content: state.content[parentCid] || undefined,
|
||||||
link: state.link[parentCid],
|
link: state.link[parentCid] || undefined,
|
||||||
spoiler: state.spoiler[parentCid] || false,
|
spoiler: state.spoiler[parentCid] || false,
|
||||||
publishCommentOptions: state.publishCommentOptions[parentCid],
|
publishCommentOptions: state.publishCommentOptions[parentCid],
|
||||||
}));
|
}));
|
||||||
|
|||||||
Reference in New Issue
Block a user