Account for possible undefined external actions 😭
This commit is contained in:
parent
ef9396bcf4
commit
d2aee63371
|
@ -172,8 +172,8 @@
|
||||||
<img
|
<img
|
||||||
width={20}
|
width={20}
|
||||||
height={20}
|
height={20}
|
||||||
src={getExternalAction(action.stepId).icon}
|
src={getExternalAction(action.stepId)?.icon}
|
||||||
alt={getExternalAction(action.stepId).name}
|
alt={getExternalAction(action.stepId)?.name}
|
||||||
/>
|
/>
|
||||||
<span class="icon-spacing">
|
<span class="icon-spacing">
|
||||||
<Body size="XS">
|
<Body size="XS">
|
||||||
|
|
Loading…
Reference in New Issue