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

Commit

Permalink
fix: add missing subnetid change
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan committed Nov 27, 2023
1 parent 6442297 commit 140e3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CrossSubnetMessagesGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const CrossSubnetMessagesGraph = function () {
links: (certificatesWithTarget || []).reduce((acc: Link[], curr) => {
curr.targetSubnets.forEach((t) => {
acc.push({
source: curr.sourceSubnetId,
source: curr.sourceSubnetId.value,
target: t.value.toString(),
certificateId: curr.id,
weight: 1,
Expand Down

0 comments on commit 140e3c1

Please sign in to comment.