Skip to content

Commit

Permalink
feat(ui): TE-2334 fix type error on view subscription groups page (#1457
Browse files Browse the repository at this point in the history
)

* feat(ui): TE-2334 fix type error on view subscription groups page

* more type safety
  • Loading branch information
harshilvelotio committed Jul 2, 2024
1 parent 067a411 commit b87705f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const getCardProps = (
},
{
label: t("label.to"),
value: channel.params.emailRecipients.to.join(","),
value: channel.params.emailRecipients?.to?.join(",") ?? "",
}
);

Expand Down

0 comments on commit b87705f

Please sign in to comment.