Skip to content

Commit

Permalink
feat(core): set Cancellation Reason to be expanded by default (#10018)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason <[email protected]>
  • Loading branch information
bliu2368 and jasonmcintosh authored Jul 27, 2023
1 parent 8de1e3c commit db06e88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface IExecutionCancellationReasonProps {
}

export function ExecutionCancellationReason({ cancellationReason }: IExecutionCancellationReasonProps) {
const [isExpanded, setIsExpanded] = React.useState(false);
const [isExpanded, setIsExpanded] = React.useState(true);
return (
<>
<div className="execution-cancellation-reason-button">
Expand Down

0 comments on commit db06e88

Please sign in to comment.