Browse Source

Removed TODO comments

master
Leo Lamprecht 8 years ago
parent
commit
abaa83eee7
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 6
      bin/now-billing.js

6
bin/now-billing.js

@ -154,7 +154,7 @@ async function run(token) {
address += `${card.address_state}, `
}
// TODO: Stripe is returning a two digit code for the country,
// Stripe is returning a two digit code for the country,
// but we want the full country name
address += `${card.address_zip}. ${card.address_country}`
@ -204,7 +204,7 @@ async function run(token) {
})
}
// TODO: check if the provided cardId (in case the user
// Check if the provided cardId (in case the user
// typed `now billing set-default <some-id>`) is valid
if (cardId) {
const label = `Are you sure that you to set this card as the default?`
@ -257,7 +257,7 @@ async function run(token) {
})
}
// TODO: check if the provided cardId (in case the user
// Shoud check if the provided cardId (in case the user
// typed `now billing rm <some-id>`) is valid
if (cardId) {
const label = `Are you sure that you want to remove this card?`

Loading…
Cancel
Save