Skip to content

Commit

Permalink
Merge pull request #5778 from coronasafe/develop
Browse files Browse the repository at this point in the history
Production Release; June Week 4; Hotfix
  • Loading branch information
mathew-alex authored Jun 24, 2023
2 parents b23ab0b + ca5b767 commit 67a5b50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Facility/Consultations/LiveFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ const LiveFeed = (props: any) => {
>
<span className="sr-only">{option.label}</span>
{option.icon ? (
<i className={`fas fa-${option.icon} md:p-2`}></i>
<CareIcon className={`care-${option.icon}`} />
) : (
<span className="px-2 font-bold h-full w-8 flex items-center justify-center">
{option.value}x
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Form/FormFields/PhoneNumberFormField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ export default function PhoneNumberFormField(props: Props) {

const setValue = (value: string) => {
asYouType.reset();
field.handleChange(asYouType.input(value));
asYouType.input(value);
field.handleChange(value);
};

return (
Expand Down

1 comment on commit 67a5b50

@vercel
Copy link

@vercel vercel bot commented on 67a5b50 Jun 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

care-storybook – ./

care-storybook-git-master-coronasafe.vercel.app
care-storybook-coronasafe.vercel.app

Please sign in to comment.