Skip to content

Commit

Permalink
use constant instead of literal
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Oct 22, 2024
1 parent 2fc77b4 commit 4a6b4bf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useTranslation } from 'react-i18next'
import { useDispatch, useSelector } from 'react-redux'
import {
FLEX_MAX_CONTENT,
Flex,
PrimaryButton,
SPACING,
Expand Down Expand Up @@ -54,7 +55,7 @@ export function SubstepsToolbox(
substeps.commandCreatorFnName === 'mix')) ||
substeps.substepType === THERMOCYCLER_PROFILE ? (
<Toolbox
width="max-content"
width={FLEX_MAX_CONTENT}
childrenPadding="0"
confirmButton={
<PrimaryButton
Expand Down

0 comments on commit 4a6b4bf

Please sign in to comment.