Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth-sahoo committed Oct 10, 2024
1 parent 29aa860 commit 015b50b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion services/ad-tech/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "npm run build && node ./build/main.js",
"build": "tsc && cp -r src/views build/",
"ncu": "npx npm-check-updates -u",
"fmt": "prettier --write ."
"fmt": "pre-commit run --all-files"
},
"dependencies": {
"cbor": "^9.0.2",
Expand Down
1 change: 1 addition & 0 deletions services/ad-tech/src/controllers/report-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export const ReportStore = (() => {

/** Add a new report to the in-memory storage. */
const addReport = (report: Report) => {
// TODO: Consider partitioning by use-case.
Reports.set(`${report.category}||${report.timestamp}`, report);
};

Expand Down

0 comments on commit 015b50b

Please sign in to comment.