Skip to content

Commit

Permalink
remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
fellyph committed May 1, 2024
1 parent 700cb86 commit 34fa4b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/demos/chips/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ router.get('/analytics-third-party', (req, res) => {
title: 'CHIPS'
});
});

// Serve the analytics.js file to the site
router.get( '/analytics.js', ( req, res ) => {
let analyticsId = req.cookies.analyticsId;
Expand Down Expand Up @@ -62,7 +63,6 @@ router.post( '/track', ( req, res ) => {

// Send success status for successful interaction tracking
res.status( 200 ).send( analyticsId );
//res.sendStatus( 200 );
} else {
res.status( 400 ).send( 'Invalid request' );
}
Expand Down

0 comments on commit 34fa4b6

Please sign in to comment.