Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Jan 2, 2023
1 parent 9d9762e commit ac5b874
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/Components/Facility/AssetCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ const AssetCreate = (props: AssetProps) => {
return;
}
} catch (err) {
console.log(err);
console.error(err);
Notification.Error({ msg: err });
}
Notification.Error({ msg: "Invalid Asset Id" });
Expand Down
2 changes: 0 additions & 2 deletions src/Components/Form/FormFields/Autocomplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ export const Autocomplete = <T, V>(props: AutocompleteProps<T, V>) => {

const filteredOptions = valueOptions.filter((o) => o.search.includes(query));

console.log(value);

return (
<div className={props.className} id={props.id}>
<Combobox
Expand Down

0 comments on commit ac5b874

Please sign in to comment.