From 3473e1dfbfe6ff2c05aa9c338a74014c55d55f91 Mon Sep 17 00:00:00 2001 From: Charles Morgan Date: Sat, 3 Oct 2020 14:23:16 -0400 Subject: [PATCH] Remove console logging (#2415) Remove console logging, as its not an error being logged i see no reason for this to be printed when the startup page is viewed. --- resources/scripts/api/swr/getServerStartup.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/scripts/api/swr/getServerStartup.ts b/resources/scripts/api/swr/getServerStartup.ts index fff0263f9..892f78fdd 100644 --- a/resources/scripts/api/swr/getServerStartup.ts +++ b/resources/scripts/api/swr/getServerStartup.ts @@ -9,7 +9,6 @@ interface Response { } export default (uuid: string, initialData?: Response) => useSWR([ uuid, '/startup' ], async (): Promise => { - console.log('firing getServerStartup'); const { data } = await http.get(`/api/client/servers/${uuid}/startup`); const variables = ((data as FractalResponseList).data || []).map(rawDataToServerEggVariable);