Skip to content

Commit

Permalink
Merge pull request #43 from trevorpfiz/elektrikspark/ttp-14-setup-tes…
Browse files Browse the repository at this point in the history
…tflight

fix: medications layout
  • Loading branch information
trevorpfiz authored Dec 31, 2023
2 parents 1c15748 + eda8b2c commit f9c7c8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/expo/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const defineConfig = (): ExpoConfig => ({
android: {
package: "com.trusttheprocess.patientx",
adaptiveIcon: {
foregroundImage: "./assets/icon.png",
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#000",
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function MedicationsFormPage() {
<SafeAreaView className="flex-1 bg-gray-50">
<Stack.Screen
options={{
title: "Allergies",
title: "Medications",
headerTitleAlign: "center",
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/expo/src/components/forms/medications-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const MedicationsForm = (props: { onSuccess?: () => void }) => {
{selectedMedications.map((entry, index) => (
<View
key={index}
className="border-b border-gray-200 bg-white px-8"
className="flex-1 border-b border-gray-200 bg-white px-8"
>
<View className="flex-1 flex-row items-center justify-between py-8">
<View className="mr-4 flex-1">
Expand Down

0 comments on commit f9c7c8d

Please sign in to comment.