-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: suppress unrelated ts build error
Signed-off-by: Akiff Manji <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,8 @@ router.use(express.json()); | |
// For the secured innkeepr OIDC login request to verify the token and get a token from Traction | ||
router.get( | ||
"/innkeeperLogin", | ||
// @ts-expect-error: secure function is not typed correctly | ||
// @ts-ignore | ||
Check failure on line 25 in services/tenant-ui/src/routes/router.ts
|
||
// @ts-expect-error | ||
Check failure on line 26 in services/tenant-ui/src/routes/router.ts
|
||
secure(jwksService), | ||
async (req: any, res: Response, next: NextFunction) => { | ||
try { | ||
|