Skip to content

Commit

Permalink
Remove redundant syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwofford committed Sep 18, 2019
1 parent f9aaf12 commit e1f7f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const airCreate = (baseName, fields) =>
console.log(
`I'm asking Airtable to create a new record in the ${baseName} base at ${timestamp}`
)
base(baseName).create({ ...fields }, (err, record) => {
base(baseName).create(fields, (err, record) => {
if (err) {
reject(err)
}
Expand Down

0 comments on commit e1f7f1e

Please sign in to comment.