diff --git a/src/clients/InventoryClient.ts b/src/clients/InventoryClient.ts index 57d56ab4b..9539188ce 100644 --- a/src/clients/InventoryClient.ts +++ b/src/clients/InventoryClient.ts @@ -821,7 +821,7 @@ export class InventoryClient { for (const { l2Token, amount, targetPct, thresholdPct, cumulativeBalance, hash, chainId } of rebalances) { const tokenInfo = this.hubPoolClient.getTokenInfoForAddress(l2Token, chainId); if (!tokenInfo) { - `InventoryClient::rebalanceInventoryIfNeeded no token info for L2 token ${l2Token} on chain ${chainId}` + `InventoryClient::rebalanceInventoryIfNeeded no token info for L2 token ${l2Token} on chain ${chainId}`; } const { symbol, decimals } = tokenInfo; const formatter = createFormatFunction(2, 4, false, decimals);