Skip to content

Commit 8d83da0

Browse files
committed
Fix js equality error
1 parent 6ca5416 commit 8d83da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Blogs/Blogs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const Blogs: React.FC = () => {
7676
const posts = usePosts()
7777

7878
if (posts.posts.find(function(post) {
79-
return post.visibility == 'Public'
79+
return post.visibility === 'Public'
8080
}) === undefined) {
8181

8282
return (

0 commit comments

Comments
 (0)