Skip to content

Commit

Permalink
error message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcger committed Oct 9, 2024
1 parent 7855b81 commit 185f37d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function muteAllWithOCC(context: RulesClientContext, params: MuteAllRulePa
try {
muteAllRuleParamsSchema.validate(params);
} catch (error) {
throw Boom.badRequest(`Error validating enable rule parameters - ${error.message}`);
throw Boom.badRequest(`Error validating mute all parameters - ${error.message}`);
}

const { id } = params;
Expand Down

0 comments on commit 185f37d

Please sign in to comment.