Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
xrsv committed Feb 21, 2025
1 parent 0e441d7 commit bbb0b63
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions bin/stacks/routing-dashboard-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,14 @@ export class RoutingDashboardStack extends cdk.NestedStack {
width: 24,
type: 'metric',
properties: {
metrics: chains.map((chainId) => [
{
expression: `FILL(mreqc${chainId}, 0)`,
label: `Requests on ${ID_TO_NETWORK_NAME(chainId)}`,
id: `e1c${chainId}`,
},
metrics: _.flatMap(chains, (chainId) => [
[
{
expression: `FILL(mreqc${chainId}, 0)`,
label: `Requests on ${ID_TO_NETWORK_NAME(chainId)}`,
id: `e1c${chainId}`,
},
],
[
NAMESPACE,
`GET_QUOTE_REQUESTED_CHAINID: ${chainId}`,
Expand Down

0 comments on commit bbb0b63

Please sign in to comment.