Merge branch 'develop' into develop

This commit is contained in:
Caleb
2020-10-13 15:35:38 -04:00
committed by GitHub
159 changed files with 3400 additions and 3896 deletions

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);