🚨 Linting

This commit is contained in:
ajnart
2022-05-29 15:33:44 +02:00
parent b229aacba5
commit f3d1767daf
3 changed files with 15 additions and 18 deletions

View File

@@ -104,8 +104,9 @@ export default function CalendarComponent(props: any) {
} }
if (readarrService && readarrService.apiKey) { if (readarrService && readarrService.apiKey) {
const baseUrl = new URL(readarrService.url).origin; const baseUrl = new URL(readarrService.url).origin;
fetch(`${baseUrl}/api/v1/calendar?apikey=${readarrService?.apiKey}&end=${nextMonth}&start=${lastMonth}`).then( fetch(
(response) => { `${baseUrl}/api/v1/calendar?apikey=${readarrService?.apiKey}&end=${nextMonth}&start=${lastMonth}`
).then((response) => {
response.ok && response.ok &&
response.json().then((data) => { response.json().then((data) => {
setReadarrMedias(data); setReadarrMedias(data);
@@ -118,8 +119,7 @@ export default function CalendarComponent(props: any) {
message: `Loaded ${data.length} releases`, message: `Loaded ${data.length} releases`,
}); });
}); });
} });
);
} }
}, [config.services]); }, [config.services]);

View File

@@ -116,7 +116,6 @@ export default function TotalDownloadsComponent() {
const theme = useMantineTheme(); const theme = useMantineTheme();
// Load the last 10 values from the history // Load the last 10 values from the history
const history = torrentHistory.slice(-10); const history = torrentHistory.slice(-10);
console.log(history);
const chartDataUp = history.map((load, i) => ({ const chartDataUp = history.map((load, i) => ({
x: load.x, x: load.x,
y: load.up, y: load.up,

View File

@@ -6,8 +6,6 @@ import LoadConfigComponent from '../components/Config/LoadConfig';
import { Config } from '../tools/types'; import { Config } from '../tools/types';
import { useConfig } from '../tools/state'; import { useConfig } from '../tools/state';
import { migrateToIdConfig } from '../tools/migrate'; import { migrateToIdConfig } from '../tools/migrate';
import { ModuleWrapper } from '../components/modules/moduleWrapper';
import { DownloadsModule } from '../components/modules';
import { getConfig } from '../tools/getConfig'; import { getConfig } from '../tools/getConfig';
export async function getServerSideProps({ export async function getServerSideProps({