Skip to content

Commit

Permalink
[ML] Remove unnecessary default value.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Oct 1, 2020
1 parent 486511a commit b228018
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ export const OutlierExploration: FC<ExplorationProps> = React.memo(({ jobId }) =
jobConfig !== undefined ? getFeatureCount(jobConfig.dest.results_field, tableItems) : 1
);

const [expandedRowItem, setExpandedRowItem] = useState<DataFrameAnalyticsListRow | undefined>(
undefined
);
const [expandedRowItem, setExpandedRowItem] = useState<DataFrameAnalyticsListRow | undefined>();

const fetchStats = async () => {
const analyticsConfigs = await ml.dataFrameAnalytics.getDataFrameAnalytics(jobId);
Expand Down

0 comments on commit b228018

Please sign in to comment.