alerts/actions: fix alertsShowAlert action with props

This commit is contained in:
David Lechner
2022-07-22 14:45:47 -05:00
parent e3430260f9
commit 9d1f3651c5
+2 -1
View File
@@ -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),
}),
);