Skip to content

Commit

Permalink
fix(contacts): fix empty trackedData of company
Browse files Browse the repository at this point in the history
  • Loading branch information
soyombo-baterdene committed Jan 11, 2024
1 parent 65f1d77 commit f43f105
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -16,7 +16,7 @@ type Props = {

class LeftSidebar extends React.Component<Props> {
renderTrackedData() {
const { trackedData = [] } = this.props.company;
const trackedData = this.props.company.trackedData || [];

if (trackedData.length === 0) {
return null;
Expand Down

0 comments on commit f43f105

Please sign in to comment.