Skip to content
Snippets Groups Projects
Commit 192ad2a7 authored by Lukas's avatar Lukas
Browse files

Show delegator cell only for incoming delegations

parent 15f57142
No related branches found
No related tags found
1 merge request!585Lbudginas/#318 add hp incoming delegation account page
Pipeline #117526 failed
......@@ -91,9 +91,9 @@ export const buildTableHead = (
direction?: "incoming" | "outgoing"
) => {
const tableHeaderCells =
direction === "outgoing"
? TABLE_HEADER_CELLS_OUTGOING
: TABLE_HEADER_CELLS_INCOMING;
direction === "incoming"
? TABLE_HEADER_CELLS_INCOMING
: TABLE_HEADER_CELLS_OUTGOING;
return tableHeaderCells.map((cellName: string) => {
return (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment