Sfoglia il codice sorgente

remove first slash from render function

kaori 4 anni fa
parent
commit
47395aee1e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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');
 };