Skip to content

Commit

Permalink
fix(app): fix StyledText ts error in RobotSettingsNetworking (#10317)
Browse files Browse the repository at this point in the history
  • Loading branch information
brenthagen authored May 17, 2022
1 parent e4f9c52 commit 678ba77
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ export function RobotSettingsNetworking({
</StyledText>
</Flex>
<Flex paddingLeft={SPACING.spacing7} marginBottom={SPACING.spacing3}>
<StyledText as="pSemiBold">{t('wireless_network_name')}</StyledText>
<StyledText as="p" fontWeight={TYPOGRAPHY.fontWeightSemiBold}>
{t('wireless_network_name')}
</StyledText>
</Flex>
<Box paddingLeft={SPACING.spacing7} marginBottom={SPACING.spacing4}>
{wifi?.ipAddress != null ? (
Expand Down

0 comments on commit 678ba77

Please sign in to comment.