Skip to content

Commit

Permalink
Removed unused label from graph component
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas committed Nov 25, 2024
1 parent 76b3a8e commit 9548032
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion client/src/components/ui/graph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ interface GraphProps {

interface GraphSegment {
value: number;
label: string;
colorClass: string;
}

Expand Down
2 changes: 0 additions & 2 deletions client/src/containers/projects/custom-project/cost/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,10 @@ const ProjectCost: FC = () => {
totalCost: mockData.totalCost,
capEx: {
value: mockData.capEx,
label: "CapEx",
colorClass: "bg-sky-blue-500",
},
opEx: {
value: mockData.opExRevenue,
label: "OpEx",
colorClass: "bg-sky-blue-200",
},
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,10 @@ const LeftOver: FC = () => {
leftover: mockData.leftover,
totalRevenue: {
value: mockData.totalRevenue,
label: "Total Revenue",
colorClass: "bg-yellow-500",
},
opEx: {
value: mockData.opExRevenue,
label: "OpEx",
colorClass: "bg-sky-blue-200",
},
}}
Expand Down

0 comments on commit 9548032

Please sign in to comment.