Skip to content

Commit

Permalink
Merge pull request #139 from narayan954/deepsource-fix-9bbfc17a
Browse files Browse the repository at this point in the history
Remove `true` from boolean attribute
  • Loading branch information
narayan954 authored Feb 5, 2023
2 parents b4939e4 + 5485504 commit ab136eb
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 ab136eb

Please sign in to comment.