chore(package.json): upgrade plebbit-react-hooks

This commit is contained in:
Tom (plebeius.eth)
2024-06-15 21:53:02 +02:00
parent 31081079bc
commit 77ccf0c849
4 changed files with 67 additions and 6 deletions
-1
View File
@@ -112,7 +112,6 @@ const EditMenu = ({ commentCid, isAccountMod, isAccountCommentAuthor, isCommentA
const headingId = useId();
const _publishCommentEdit = async () => {
console.log('publishCommentEditOptions', publishCommentEditOptions);
try {
await publishCommentEdit();
} catch (error) {
+1 -1
View File
@@ -128,7 +128,7 @@ interface MarkdownProps {
title?: string;
}
const Markdown = ({ content, spoiler, title }: MarkdownProps) => {
const Markdown = ({ content, title }: MarkdownProps) => {
const remarkPlugins: any[] = [[supersub]];
if (content && content.length <= MAX_LENGTH_FOR_GFM) {