Fix Errors

This commit is contained in:
abhay-raizada
2024-08-11 16:40:46 +05:30
parent 477a924fe0
commit 2f0c7ddadb
9 changed files with 721175 additions and 167 deletions

View File

@@ -69,7 +69,7 @@ export const MedicineForm: React.FC<MedicineFormProps> = ({
style={styles.input}
placeholder="Enter quantity..."
value={form.quantity}
placeholderTextColor="light"
placeholderTextColor="white"
onChangeText={(text: string) => handleTextChange('quantity', text)}
/>
</View>
@@ -79,7 +79,7 @@ export const MedicineForm: React.FC<MedicineFormProps> = ({
style={styles.input}
placeholder="Refills"
value={form.refills}
placeholderTextColor="light"
placeholderTextColor="white"
onChangeText={(text: string) => handleTextChange('refills', text)}
/>
</View>
@@ -89,7 +89,7 @@ export const MedicineForm: React.FC<MedicineFormProps> = ({
style={styles.input}
placeholder="Enter directions"
value={form.refills}
placeholderTextColor="light"
placeholderTextColor="white"
onChangeText={(text: string) =>
handleTextChange('directions', text)
}