Skip to content

Commit

Permalink
fix: remove casing requirement (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-siek authored Dec 9, 2023
1 parent d19288f commit ea4ddfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const cli = meow(

const app = async () => {
const { save } = cli.flags as Flags
const coinTickers = cli.input[0]
const coinTickers = cli.input[0].toLowerCase().trim()

if (!coinTickers) {
logError('No coin name provided. Check `crypto --help` for help')
Expand Down

0 comments on commit ea4ddfc

Please sign in to comment.