Skip to content

Commit

Permalink
Update common.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pascualy authored Apr 12, 2024
1 parent 3ccf4e8 commit 4bf6e63
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions app/provider/common.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
/**
* Returns the name of the provider
* The purpose of a feedback form in an iOS app is to allow users to provide feedback, suggestions, and report any issues they may have encountered while using the app. The feedback form should contain the following fields:
* - full name
* - email address
* - description
*
* The form should also have a submit button.
*
* @itemId:prov-get-name
* @itemFulfills:req-patient-app-ui
Expand All @@ -9,12 +14,12 @@ function getProviderName() {
return 'Dr. John Doe';
}

/**
* Returns the provider address
*
* @itemId:prov-get-address
* @itemFulfills:req-patient-app-ui
*/
function getProviderAddress() {
return '456 Elm St.';
}
// /**
// * Returns the provider address
// *
// * @itemId:prov-get-address
// * @itemFulfills:req-patient-app-ui
// */
// function getProviderAddress() {
// return '456 Elm St.';
// }

0 comments on commit 4bf6e63

Please sign in to comment.