Explorar el Código

remove first slash from render function

kaori hace 4 años
padre
commit
47395aee1e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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');
 };