From 4bf6e63f918fb4a2944135ee116456d0ce119992 Mon Sep 17 00:00:00 2001 From: Gabriel Pascualy Date: Thu, 11 Apr 2024 21:08:25 -0400 Subject: [PATCH] Update common.ts --- app/provider/common.ts | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/app/provider/common.ts b/app/provider/common.ts index ee0c7e6..9eec54b 100644 --- a/app/provider/common.ts +++ b/app/provider/common.ts @@ -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 @@ -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.'; -} \ No newline at end of file +// /** +// * Returns the provider address +// * +// * @itemId:prov-get-address +// * @itemFulfills:req-patient-app-ui +// */ +// function getProviderAddress() { +// return '456 Elm St.'; +// }