diff options
Diffstat (limited to 'extension/react-app')
| -rw-r--r-- | extension/react-app/src/components/StepContainer.tsx | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx index d480c565..d1a8a46a 100644 --- a/extension/react-app/src/components/StepContainer.tsx +++ b/extension/react-app/src/components/StepContainer.tsx @@ -158,7 +158,7 @@ function StepContainer(props: StepContainerProps) {      >        <StepContainerDiv open={props.open}>          <GradientBorder -          loading={props.historyNode.active as boolean | false} +          loading={props.historyNode.active as boolean || false}            isFirst={props.isFirst}            isLast={props.isLast}            borderColor={ @@ -178,7 +178,7 @@ function StepContainer(props: StepContainerProps) {            }}          >            <HeaderDiv -            loading={props.historyNode.active as boolean | false} +            loading={props.historyNode.active as boolean || false}              error={props.historyNode.observation?.error ? true : false}            >              <div className="m-2"> | 
