Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke committed Apr 6, 2024
1 parent 1f5e264 commit 71c26eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/render/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function generateMarkdownTable(
]
: [
[`L1 Base Fee`, `${options.baseFee!} gwei`],
[`L1 Blob Base Fee`, `${l1GweiBlobBaseFee} gwei`],
[`L1 Blob Base Fee`, `${l1GweiBlobBaseFee!} gwei`],
[`L2 Gas Price`, `${l2gwei} gwei` ]
]

Expand Down
2 changes: 1 addition & 1 deletion src/lib/render/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ export function generateTerminalTextTable(
opStackConfig.push({
hAlign: "left",
colSpan: 2,
content: chalk.cyan(`L1: ${l1GweiBlobBaseFee} gwei (blobBaseFee)`)
content: chalk.cyan(`L1: ${l1GweiBlobBaseFee!} gwei (blobBaseFee)`)
});
opStackConfig.push({
hAlign: "left",
Expand Down

0 comments on commit 71c26eb

Please sign in to comment.