Skip to content

Commit

Permalink
Remove unused cb param (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeemkhedr authored and fhinkel committed Jun 12, 2018
1 parent 21dc72c commit 41a569b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appengine/analytics/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ app.enable('trust proxy');
// Engine, but will need to be set manually when running locally. See README.md.
const GA_TRACKING_ID = process.env.GA_TRACKING_ID;

function trackEvent (category, action, label, value, cb) {
function trackEvent (category, action, label, value) {
const data = {
// API Version.
v: '1',
Expand Down

0 comments on commit 41a569b

Please sign in to comment.