hotfix for TypeError

This commit is contained in:
Joey Orlando 2023-11-02 07:59:10 -04:00
parent 2edae70b04
commit bf1cb83197
No known key found for this signature in database
GPG key ID: 469E88366B17F644

View file

@ -177,7 +177,7 @@ class IncidentPage extends React.Component<IncidentPageProps, IncidentPageState>
</div>
<div className={cx('column')}>
<VerticalGroup style={{ display: 'block' }}>
{(!incident.resolved || incident?.paged_users.length > 0) && (
{(!incident.resolved || incident?.paged_users?.length > 0) && (
<AddResponders
mode="update"
hideAddResponderButton={incident.resolved}