Skip to content

Commit

Permalink
[Ml] Disable grouping by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Sep 19, 2022
1 parent 1ae3d7d commit 55d2832
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ExplainLogRateSpikesAnalysis: FC<ExplainLogRateSpikesAnalysisProps>
const [currentAnalysisWindowParameters, setCurrentAnalysisWindowParameters] = useState<
WindowParameters | undefined
>();
const [groupResults, setGroupResults] = useState<boolean>(true);
const [groupResults, setGroupResults] = useState<boolean>(false);

const onSwitchToggle = (e: { target: { checked: React.SetStateAction<boolean> } }) => {
setGroupResults(e.target.checked);
Expand Down

0 comments on commit 55d2832

Please sign in to comment.