Skip to content

Commit

Permalink
Realighn
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonKearl committed May 2, 2023
1 parent 480a525 commit 2297ab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ export function activate(context: vscode.ExtensionContext) {
const cents = ("" + dollars * 100).slice(0, 4)
const tokenItem = {
text: `${tokens} Tokens`,
alignment: vscode.NotebookCellStatusBarAlignment.Left,
alignment: vscode.NotebookCellStatusBarAlignment.Right,
}
const costItem = {
text: `${cents}¢`,
alignment: vscode.NotebookCellStatusBarAlignment.Left,
alignment: vscode.NotebookCellStatusBarAlignment.Right,
}

return dollars ? [tokenItem, costItem] : [tokenItem]
Expand Down

0 comments on commit 2297ab5

Please sign in to comment.