Skip to content

Commit 8106ae0

Browse files
committed
react pdf bump
1 parent d1bd02c commit 8106ae0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/molecules/MarkdownRenderer/MarkdownRenderer.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,10 @@ ${SharedLightboxStyle}
204204

205205
export const MarkdownRenderer: React.FC<MarkdownRendererProps> = (props) => {
206206
const { mobile = false, fontSize = "16", children, className } = props;
207-
const [rehypePlugins, setRehypePlugins] = useState<Array<unknown>>([]);
208-
const [remarkPlugins, setRemarkPlugins] = useState<Array<unknown>>([]);
207+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
208+
const [rehypePlugins, setRehypePlugins] = useState<Array<any>>([]);
209+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
210+
const [remarkPlugins, setRemarkPlugins] = useState<Array<any>>([]);
209211

210212
useEffect(() => {
211213
(async () => {

0 commit comments

Comments
 (0)