Skip to content

Commit

Permalink
Issue Swasth-Digital-Health-Foundation#575 refactor: lable changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yashashkumar committed Nov 16, 2023
1 parent d155c62 commit 4f026ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,19 +226,19 @@ const InitiateNewClaimRequest = () => {
</h2>
<div className="rounded-lg border border-stroke bg-white p-2 px-3 shadow-default dark:border-strokedark dark:bg-boxdark">
<TextInputWithLabel
label="Selected insurance : *"
label="Selected insurance : "
value={selectedInsurance || displayedData[0]?.insurance_id}
disabled={true}
type="text"
/>
<TextInputWithLabel
label="Service type : *"
label="Service type : "
value={displayedData[0]?.claimType || serviceType}
disabled={true}
type="text"
/>
<SelectInput
label="Service/Treatment given : *"
label="Service/Treatment given : "
value={"consultation"}
onChange={(e: any) => setServiceType(e.target.value)}
options={treatmentOptions}
Expand Down
6 changes: 3 additions & 3 deletions opd-app/src/pages/InitiatePreAuthRequest/PreAuthRequest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,19 +222,19 @@ const PreAuthRequest = () => {
</h2>
<div className="rounded-lg border border-stroke bg-white p-2 px-3 shadow-default dark:border-strokedark dark:bg-boxdark">
<TextInputWithLabel
label="Selected insurance : *"
label="Selected insurance : "
value={selectedInsurance || displayedData[0]?.insurance_id}
disabled={true}
type="text"
/>
<TextInputWithLabel
label="Service type : *"
label="Service type : "
value={displayedData[0]?.claimType || serviceType}
disabled={true}
type="text"
/>
<SelectInput
label="Service/Treatment given : *"
label="Service/Treatment given : "
value={"consultation"}
onChange={(e: any) => setServiceType(e.target.value)}
options={treatmentOptions}
Expand Down

0 comments on commit 4f026ce

Please sign in to comment.