Skip to content

Commit f9c7c8d

Browse files
authored
Merge pull request #43 from trevorpfiz/elektrikspark/ttp-14-setup-testflight
fix: medications layout
2 parents 1c15748 + eda8b2c commit f9c7c8d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/expo/app.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const defineConfig = (): ExpoConfig => ({
2424
android: {
2525
package: "com.trusttheprocess.patientx",
2626
adaptiveIcon: {
27-
foregroundImage: "./assets/icon.png",
27+
foregroundImage: "./assets/adaptive-icon.png",
2828
backgroundColor: "#000",
2929
},
3030
},

apps/expo/src/app/(main)/onboarding/medical-history/medications.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function MedicationsFormPage() {
1313
<SafeAreaView className="flex-1 bg-gray-50">
1414
<Stack.Screen
1515
options={{
16-
title: "Allergies",
16+
title: "Medications",
1717
headerTitleAlign: "center",
1818
}}
1919
/>

apps/expo/src/components/forms/medications-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export const MedicationsForm = (props: { onSuccess?: () => void }) => {
115115
{selectedMedications.map((entry, index) => (
116116
<View
117117
key={index}
118-
className="border-b border-gray-200 bg-white px-8"
118+
className="flex-1 border-b border-gray-200 bg-white px-8"
119119
>
120120
<View className="flex-1 flex-row items-center justify-between py-8">
121121
<View className="mr-4 flex-1">

0 commit comments

Comments
 (0)