Browse Source

remove first slash from render function

kaori 4 năm trước cách đây
mục cha
commit
47395aee1e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/app/src/server/routes/in-app-notification.ts

+ 1 - 1
packages/app/src/server/routes/in-app-notification.ts

@@ -5,5 +5,5 @@ import {
 export const list = (req: Request, res: Response): void => {
   console.log('hogehoge');
 
-  return res.render('/me/in-app-notification');
+  return res.render('me/in-app-notification');
 };