diff --git a/src/alerts/actions.ts b/src/alerts/actions.ts index e50238e6..ce483d1b 100644 --- a/src/alerts/actions.ts +++ b/src/alerts/actions.ts @@ -22,7 +22,8 @@ export const alertsShowAlert = createAction( type: 'alerts.action.showAlert', domain, specific, - props, + // HACK: using varargs to allow props to be optional, but it is only one arg + props: props.at(0), }), );