Skip to content

Commit

Permalink
Add owner email
Browse files Browse the repository at this point in the history
  • Loading branch information
vhande committed Oct 21, 2024
1 parent e53ace6 commit 2f1e8d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/hooks/api/ownerships.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export type OwnershipRequest = {
id: string;
itemId: string;
ownerId: string;
ownerEmail: string;
requesterId: string;
state: RequestState;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const OwnershipsTable = ({ requests, actions }: Props) => {
padding: 0.5rem 0;
`}
>
<List.Item>{request.requesterId}</List.Item>
<List.Item>{request.ownerEmail}</List.Item>
<List.Item>{actions}</List.Item>
</Inline>
))}
Expand Down

0 comments on commit 2f1e8d8

Please sign in to comment.