Skip to content

Commit

Permalink
Fix unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePotatoArchivist committed Mar 21, 2024
1 parent cfdaa80 commit 3357c32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ app.post('/data/pit', async(req,res) => {
...body,
photo: Buffer.from(dataUriToBuffer(body.photo).buffer),
});
const aPitApp = await PitApp.save();
// const aPitApp =

await PitApp.save();

console.log(`Pit data recieved for ${body.teamNumber}`);

Expand Down

0 comments on commit 3357c32

Please sign in to comment.