Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
feat: display acc id in acc details (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
krtk6160 authored Apr 23, 2023
1 parent b389887 commit bfa33f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/account/details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ const Details: React.FC<{

return (
<div className="shadow p-6 min-w-0 rounded-lg shadow-xs overflow-hidden bg-white grid grid-cols-2 gap-4">
<div>
<p className="mb-4 font-semibold text-gray-600">Account ID</p>
<p className={`text-gray-600 ${emptyClass}`}>{data?.id}</p>
</div>
<div>
<p className="mb-4 font-semibold text-gray-600">Phone</p>
<p className={`text-gray-600 ${emptyClass}`}>{data?.owner?.phone}</p>
Expand Down

0 comments on commit bfa33f7

Please sign in to comment.