From 2de490a3d7130207111746637c0076bdced57213 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Thu, 9 Oct 2025 15:06:52 -0700 Subject: [PATCH] fix: cost indentation --- src/utils/calculateCost.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/utils/calculateCost.ts b/src/utils/calculateCost.ts index 69c224c..b522d1f 100644 --- a/src/utils/calculateCost.ts +++ b/src/utils/calculateCost.ts @@ -22,9 +22,8 @@ export const calculateCost = ( : 15) / 1_000_000); const totalCost = inputCost + outputCost; return `-# Accepted ${usage.input_tokens.toString()} and generated ${usage.output_tokens.toString()}. - - -# Total cost: ${totalCost.toLocaleString("en-GB", { - currency: "USD", - style: "currency", - })}`; +-# Total cost: ${totalCost.toLocaleString("en-GB", { + currency: "USD", + style: "currency", +})}`; };