Skip to content

Commit

Permalink
fix: #1987 add pending text when status pending and has reapit ref (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
NghiaPham authored Jul 24, 2020
1 parent 6bce8c5 commit e8cf6e6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ exports[`AccountStatusSection should match snapshot 1`] = `
<Component
className=""
>
<p
className="mb-1"
>
We are currently verifying your information with our Accounts Department
</p>
<b>
ACCOUNT STATUS:
</b>
Expand Down Expand Up @@ -41,6 +46,11 @@ exports[`AccountStatusSection should match snapshot with hasReapitAccountsRef is
<Component
className=""
>
<p
className="mb-1"
>
We are currently verifying your information with our Accounts Department
</p>
<b>
ACCOUNT STATUS:
</b>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const AccountStatusSection: React.FC<AccountStatusSectionProps> = ({
<Input type="hidden" id={statusField.name} name={statusField.name} />

<Content className={statusText}>
{status === 'pending' && (
{initialStatus === 'pending' && (
<p className="mb-1">We are currently verifying your information with our Accounts Department</p>
)}
<b>ACCOUNT STATUS:</b> <i>{initialStatus}</i>
Expand Down

0 comments on commit e8cf6e6

Please sign in to comment.