diff options
Diffstat (limited to 'src/frontend/app/contexts/PageTitleContext.tsx')
| -rw-r--r-- | src/frontend/app/contexts/PageTitleContext.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/frontend/app/contexts/PageTitleContext.tsx b/src/frontend/app/contexts/PageTitleContext.tsx index a7a3ad4..a6bf348 100644 --- a/src/frontend/app/contexts/PageTitleContext.tsx +++ b/src/frontend/app/contexts/PageTitleContext.tsx @@ -38,7 +38,6 @@ export const usePageTitle = (title: string) => { setTitle(title); document.title = `${title} - EnMarcha`; - return () => { - }; + return () => {}; }, [title, setTitle]); }; |
