Skip to content

Commit

Permalink
Fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert committed Jul 7, 2022
1 parent 04a9818 commit 16d33bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/app/apps/server/communication/uikit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Meteor.startup(() => {

router.use(authenticationMiddleware({ rejectUnauthorized: false }));

router.use((req, res, next) => {
router.use((req: Request, res, next) => {
const { 'x-visitor-token': visitorToken } = req.headers;

if (visitorToken) {
Expand Down

0 comments on commit 16d33bb

Please sign in to comment.