Skip to content

Commit

Permalink
add: churchName to the donation page (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
Himali-Malvawala authored Aug 9, 2023
1 parent 90ecabb commit 62aa61f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/appBase
2 changes: 1 addition & 1 deletion src/people/components/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const Tabs: React.FC<Props> = (props) => {
switch (selectedTab) {
case "notes": currentTab = <Notes context={context} conversationId={person?.conversationId} createConversation={handleCreateConversation} />; break;
case "attendance": currentTab = <PersonAttendance personId={person.id} />; break;
case "donations": currentTab = <DonationPage personId={person.id} />; break;
case "donations": currentTab = <DonationPage personId={person.id} churchName={UserHelper.currentUserChurch.church.name} />; break;
default: currentTab = <div>Not implemented</div>; break;
}

Expand Down

0 comments on commit 62aa61f

Please sign in to comment.