Files
jellyseerr/src/components/Settings/SettingsLogs/index.tsx
sct 5e352c201f fix(frontend): fixed mismatched rounded sizing on new login
also fixes log filename in temp log page

fixes #721
2021-01-22 14:08:10 +00:00

18 lines
476 B
TypeScript

import React from 'react';
// We will localize this file when the complete version is released.
const SettingsLogs: React.FC = () => {
return (
<>
<div className="text-sm leading-loose text-gray-300">
Logs page is still being built. For now, you can access your logs
directly in <code>stdout</code> (container logs) or looking in{' '}
<code>/app/config/logs/overseerr.log</code>
</div>
</>
);
};
export default SettingsLogs;