🐛 fix: update quota rendering to display $0 when no quota is available
This commit is contained in:
parent
234fb1b118
commit
f7cdde4b50
@ -101,7 +101,7 @@ export default function LogTableRow({ item, userIsAdmin }) {
|
||||
</TableCell>
|
||||
<TableCell>{item.prompt_tokens || '0'}</TableCell>
|
||||
<TableCell>{item.completion_tokens || '0'}</TableCell>
|
||||
<TableCell>{item.quota ? renderQuota(item.quota, 6) : '0'}</TableCell>
|
||||
<TableCell>{item.quota ? renderQuota(item.quota, 6) : '$0'}</TableCell>
|
||||
<TableCell>{item.content}</TableCell>
|
||||
</TableRow>
|
||||
</>
|
||||
|
Loading…
Reference in New Issue
Block a user