()
| 11 | const navigate = useNavigate(); |
| 12 | |
| 13 | const handleLogout = () => { |
| 14 | localStorage.removeItem('token'); |
| 15 | navigate(generateAbsoluteRouterPath(RouterPaths.login.absolutePath)); |
| 16 | }; |
| 17 | |
| 18 | return ( |
| 19 | <Tooltip title={t('logout')}> |
nothing calls this directly
no test coverage detected