Skip to content

Commit

Permalink
fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
nishadipri committed Apr 18, 2024
1 parent 79b6879 commit 4bddea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/seeds/development/questions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ exports.seed = function (knex) {
// Deletes all existing entries
return knex('Questions')
.del()
.then(function () {
.then(() => {
// Inserts seed entries
return knex('Questions').insert([
{ id: 1, title: 'What went well?', color: 'green' },
Expand Down

0 comments on commit 4bddea9

Please sign in to comment.