Skip to content

Commit

Permalink
#122: some updates in user details modal
Browse files Browse the repository at this point in the history
  • Loading branch information
an2508374 committed Jan 24, 2024
1 parent c4c0f21 commit 21cba0a
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -402,13 +402,15 @@ import {
<div style={{ marginBottom: '30px' }}></div>
</div>

<p className="text-orange-600">Remember to confirm or cancel your offer request after potential approval.</p>

{ (props.userId === null) ?
{ (props.userId !== null) ?
<div className="space-y-6 gap-6">
<p className="text-orange-600">Remember to confirm or cancel your offer request after potential approval.</p>
</div>
:
<div className="space-y-6 gap-6">
<p className="text-blue-400">You can do it by going to home page and typing the id presented above in "Order id" field.</p>
<p className="text-blue-400">You can check status of your order in Check Order after typing the id presented above.</p>
</div>
: null }
}

<div className="space-y-6 gap-6">
<div style={{ marginBottom: '30px' }}></div>
Expand Down

0 comments on commit 21cba0a

Please sign in to comment.