Skip to content

Commit

Permalink
fix(EMS-4100): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ttbarnes committed Jan 14, 2025
1 parent 3063da1 commit b894451
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ export const TEMPLATE = TEMPLATES.TALK_TO_AN_EXPORT_FINANCE_MANAGER_EXIT;
* @param {Express.Response} Express response
* @returns {Express.Response.render} "Talk to an export finance manager" exit page
*/
export const get = (req: Request, res: Response) => {
export const get = (req: Request, res: Response) =>
res.render(TEMPLATE, {
...corePageVariables({ PAGE_CONTENT_STRINGS: PAGES.TALK_TO_AN_EXPORT_FINANCE_MANAGER_EXIT, BACK_LINK: req.headers.referer, ORIGINAL_URL: req.originalUrl }),
userName: getUserNameFromSession(req.session.user),
});
};

0 comments on commit b894451

Please sign in to comment.