Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
gregfrasco committed Oct 13, 2023
1 parent 921c186 commit 033e66c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/server/src/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ const prisma = new PrismaClient();
async function main() {
const contractType = await prisma.contractType.upsert({

Check warning on line 4 in packages/server/src/seed.ts

View workflow job for this annotation

GitHub Actions / Server Checks

'contractType' is assigned a value but never used

Check warning on line 4 in packages/server/src/seed.ts

View workflow job for this annotation

GitHub Actions / Server Checks

'contractType' is assigned a value but never used

Check warning on line 4 in packages/server/src/seed.ts

View workflow job for this annotation

GitHub Actions / Server Checks

'contractType' is assigned a value but never used
create: {
id: 0,
name: 'Internal',
id: 0,
name: 'Internal'
},
where: {
id: 0
},
update: {
id: 0,
name: 'Internal'
id: 0,
name: 'Internal'
}
});

Expand All @@ -20,7 +20,7 @@ async function main() {
name: 'Indirect',
description: 'Update Meetings, Standup, Classes, etc.',
status: 'Active',
isBillable: true,
isBillable: true
},
where: {
name: 'Indirect'
Expand Down

0 comments on commit 033e66c

Please sign in to comment.