Skip to content

Commit

Permalink
Remove true from boolean attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] authored Dec 20, 2022
1 parent a50a3a2 commit 9331c9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Post.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ function Post(prop) {
<Grid item xs={6} md={6}>
<Item>
{postHasImages ? (
<ImageSlider slides={postImages} isCommentBox={true} />
<ImageSlider slides={postImages} isCommentBox />
) : (
<div className="post__background">{caption}</div>
)}
Expand Down Expand Up @@ -387,7 +387,7 @@ function Post(prop) {
<EmojiPicker
emojiStyle="native"
height={330}
searchDisabled={true}
searchDisabled
onEmojiClick={onEmojiClick}
previewConfig={{
showPreview: false,
Expand Down Expand Up @@ -433,7 +433,7 @@ function Post(prop) {
<EmojiPicker
emojiStyle="native"
height={330}
searchDisabled={true}
searchDisabled
onEmojiClick={onEmojiClick}
previewConfig={{
showPreview: false,
Expand Down

0 comments on commit 9331c9b

Please sign in to comment.