Skip to content

Commit

Permalink
updated condition for displaying message for missing product id
Browse files Browse the repository at this point in the history
  • Loading branch information
zotya committed Nov 24, 2022
1 parent 4d71ec7 commit 1aab056
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ItemView/ItemView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,12 @@ function ItemView(props) {
</div>
</div> */}
</div>
) : (
) : item ? (
<>
<h1>Data series not found...</h1>
</>
) : (
<></>
);
}

Expand Down

0 comments on commit 1aab056

Please sign in to comment.