Skip to content

Commit

Permalink
Remove stack
Browse files Browse the repository at this point in the history
  • Loading branch information
kiahna-tucker committed Feb 7, 2024
1 parent 144dd77 commit 9677917
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/components/editor/Bindings/Backfill/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,18 +153,14 @@ function Backfill({ description, bindingIndex = -1 }: Props) {

return (
<Box sx={{ mt: 3 }}>
<Stack direction="row" spacing={1} sx={{ mb: 2 }}>
<Stack spacing={1}>
<Typography
variant={
bindingIndex === -1 ? 'formSectionHeader' : 'h6'
}
>
<FormattedMessage id="workflows.collectionSelector.manualBackfill.header" />
</Typography>

<Typography component="div">{description}</Typography>
</Stack>
<Stack spacing={1} sx={{ mb: 2 }}>
<Typography
variant={bindingIndex === -1 ? 'formSectionHeader' : 'h6'}
>
<FormattedMessage id="workflows.collectionSelector.manualBackfill.header" />
</Typography>

<Typography component="div">{description}</Typography>
</Stack>

<OutlinedToggleButton
Expand Down

0 comments on commit 9677917

Please sign in to comment.