Skip to content

Commit

Permalink
fix(api-service): in app avatar sanitize (#7392)
Browse files Browse the repository at this point in the history
  • Loading branch information
djabarovgeorge authored Dec 26, 2024
1 parent 8414e78 commit 82c8d2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function sanitizeInApp(controlValues: InAppControlType) {
const normalized: InAppControlType = {
subject: controlValues.subject,
body: sanitizeEmptyInput<string>(controlValues.body),
avatar: controlValues.avatar,
avatar: sanitizeEmptyInput<string>(controlValues.avatar),
primaryAction: undefined,
secondaryAction: undefined,
redirect: undefined,
Expand Down

0 comments on commit 82c8d2f

Please sign in to comment.