Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Jovan Cvetkovic <[email protected]>
  • Loading branch information
jovancvetkovic3006 committed Jun 23, 2023
1 parent 5a7fe5e commit b43dda7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const MonitorsList = ({ values, httpClient }) => {
);

const monitorsToOptions = (monitors) =>
monitors.map((monitor, index) => ({
monitors.map((monitor) => ({
label: monitor.monitor_name,
value: monitor.monitor_id,
}));
Expand Down Expand Up @@ -179,7 +179,7 @@ const MonitorsList = ({ values, httpClient }) => {
fieldProps={{
validate: () => validate(),
}}
render={({ field, form }) => (
render={({ form }) => (
<FormikFormRow
name={formikFieldName}
form={form}
Expand Down

0 comments on commit b43dda7

Please sign in to comment.