mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
refactor(Board): use !== instead
This commit is contained in:
parent
5ebc8df63f
commit
2b051f738d
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ const Board = () => {
|
|||
);
|
||||
}
|
||||
case 'Err': {
|
||||
if (!catalog.content.content === 'EmptyContent') {
|
||||
if (catalog.content.content !== 'EmptyContent') {
|
||||
return (
|
||||
<MetaRow
|
||||
key={index}
|
||||
|
|
|
|||
Loading…
Reference in a new issue