wip: black

This commit is contained in:
Frank
2026-01-06 23:34:10 -05:00
parent 22b058a33d
commit 23fc675ad5
25 changed files with 2705 additions and 50 deletions

View File

@@ -169,7 +169,9 @@ export function UsageSection() {
</Show>
</div>
</td>
<td data-slot="usage-cost">${((usage.cost ?? 0) / 100000000).toFixed(4)}</td>
<td data-slot="usage-cost">
${usage.enrichment?.plan === "sub" ? "0.0000" : ((usage.cost ?? 0) / 100000000).toFixed(4)}
</td>
</tr>
)
}}