Skip to content

Commit de4b519

Browse files
Merged PR 41044: Rework
Rework Related work items: #138963
2 parents 1bc3710 + 5645ada commit de4b519

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/components/ui/forms/Label.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {View} from 'react-native'
2-
import {Paragraph} from '@/components/ui/text/Paragraph'
2+
import {Phrase} from '@/components/ui/text/Phrase'
33

44
type Props = {
55
isAccessible?: boolean
@@ -12,6 +12,10 @@ export const Label = ({isAccessible, text}: Props) => (
1212
accessibilityLanguage="nl-NL"
1313
importantForAccessibility={!isAccessible ? 'no-hide-descendants' : 'auto'} // in case of Android
1414
>
15-
<Paragraph>{text}</Paragraph>
15+
<Phrase
16+
emphasis="strong"
17+
testID="TextInputLabel">
18+
{text}
19+
</Phrase>
1620
</View>
1721
)

src/modules/parking/screens/ParkingLogin.screen.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const ParkingLoginScreen = ({navigation: {navigate}}: Props) => (
2020
<Column gutter="lg">
2121
<Title
2222
level="h2"
23-
text="Inloggen Aanmelden Parkeren"
23+
text="Inloggen Aanmelden parkeren"
2424
/>
2525
<ParkingLoginForm />
2626
<Button

0 commit comments

Comments
 (0)