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