Skip to content

Commit

Permalink
test linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jessica2673 committed Apr 4, 2024
1 parent eb513a4 commit 6b84b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/typescript/rest/donationsRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const donationRouter = Router();
donationRouter.get("/", async (req: any, res: any) => {
try {

Check failure on line 14 in backend/typescript/rest/donationsRoutes.ts

View workflow job for this annotation

GitHub Actions / run-lint

Delete `··`
const allDonations = await donationService.getAllDonations();

console.log('getting donations');
res.status(200).json(allDonations);
} catch (error) {
res.status(500).json({ error: getErrorMessage(error) });
Expand Down

0 comments on commit 6b84b93

Please sign in to comment.