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.
This commit is contained in:
Charles Morgan 2020-10-03 14:23:16 -04:00 committed by GitHub
parent 10eeae0927
commit 3473e1dfbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,6 @@ interface Response {
}
export default (uuid: string, initialData?: Response) => useSWR([ uuid, '/startup' ], async (): Promise<Response> => {
console.log('firing getServerStartup');
const { data } = await http.get(`/api/client/servers/${uuid}/startup`);
const variables = ((data as FractalResponseList).data || []).map(rawDataToServerEggVariable);