Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
paultsimura committed Sep 8, 2023
1 parent d896c7e commit c1388d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/workspace/reimburse/WorkspaceRateAndUnitPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class WorkspaceRateAndUnitPage extends React.Component {
if (!rateValueRegex.test(values.rate) || values.rate === '') {
errors.rate = 'workspace.reimburse.invalidRateError';
} else if (parseFloat(values.rate) <= 0) {
errors.rate = 'workspace.reimburse.lowRateError'
errors.rate = 'workspace.reimburse.lowRateError';
}
return errors;
}
Expand Down

0 comments on commit c1388d8

Please sign in to comment.