Skip to content

Commit

Permalink
Adjusted language
Browse files Browse the repository at this point in the history
  • Loading branch information
Auz committed Aug 23, 2021
1 parent 41ede31 commit b30f194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/front-end/components/Metrics/MetricForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ const MetricForm: FC<MetricFormProps> = ({
if (value.loseRisk < value.winRisk) return;

const body = JSON.stringify({
...sendValue,
sendValue,
sql: sqlInput ? value.sql : "",
});

Expand Down Expand Up @@ -279,7 +279,7 @@ const MetricForm: FC<MetricFormProps> = ({

const riskError =
value.loseRisk < value.winRisk
? "The winning risk percentage cannot be higher than the losing risk number"
? "The acceptable risk percentage cannot be higher than the too risky percentage"
: "";

return (
Expand Down

0 comments on commit b30f194

Please sign in to comment.