fix: lint error
This commit is contained in:
parent
70e4a39d85
commit
88fafffd4b
@ -5,16 +5,18 @@ import { useState } from 'react'
|
||||
import siteMetadata from '@/data/siteMetadata'
|
||||
|
||||
export default function Comments({ slug }: { slug: string }) {
|
||||
const [loadComments, setLoadComments] = useState(false);
|
||||
|
||||
const [loadComments, setLoadComments] = useState(false)
|
||||
|
||||
if (!siteMetadata.comments?.provider) {
|
||||
return null;
|
||||
return null
|
||||
}
|
||||
return (
|
||||
<>
|
||||
{loadComments ? (
|
||||
<CommentsComponent commentsConfig={siteMetadata.comments} slug={slug} />
|
||||
) :
|
||||
(<button onClick={() => setLoadComments(true)}>Load Comments</button>)
|
||||
}
|
||||
) : (
|
||||
<button onClick={() => setLoadComments(true)}>Load Comments</button>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user