Showing
2 changed files
with
3 additions
and
1 deletions
@@ -40,7 +40,7 @@ const processPublicData = (req, title, page) => { | @@ -40,7 +40,7 @@ const processPublicData = (req, title, page) => { | ||
40 | let channel = req.query.channel || req.cookies._Channel || 'boys'; | 40 | let channel = req.query.channel || req.cookies._Channel || 'boys'; |
41 | let headerData = headerModel.setNavHeader(title, channel); | 41 | let headerData = headerModel.setNavHeader(title, channel); |
42 | 42 | ||
43 | - return data = { | 43 | + data = { |
44 | channel: channel, | 44 | channel: channel, |
45 | renderData: { | 45 | renderData: { |
46 | module: 'product', | 46 | module: 'product', |
@@ -50,6 +50,8 @@ const processPublicData = (req, title, page) => { | @@ -50,6 +50,8 @@ const processPublicData = (req, title, page) => { | ||
50 | pageFooter: true | 50 | pageFooter: true |
51 | } | 51 | } |
52 | }; | 52 | }; |
53 | + | ||
54 | + return data; | ||
53 | }; | 55 | }; |
54 | 56 | ||
55 | /** | 57 | /** |
-
Please register or login to post a comment