Skip to content

Commit

Permalink
style(app): Adjust desktop app "moveToWell" command text font size (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Apr 9, 2024
1 parent e345d32 commit 2a82fef
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions app/src/organisms/CommandText/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,15 @@ export function CommandText(props: Props): JSX.Element | null {
robotType
)
: ''
return t('move_to_well', {
well_name: wellName,
labware: getLabwareName(robotSideAnalysis, labwareId),
labware_location: displayLocation,
})
return (
<StyledText as="p" {...styleProps}>
{t('move_to_well', {
well_name: wellName,
labware: getLabwareName(robotSideAnalysis, labwareId),
labware_location: displayLocation,
})}
</StyledText>
)
}
case 'moveLabware': {
return (
Expand Down

0 comments on commit 2a82fef

Please sign in to comment.