diff --git a/client/src/components/ServerIpsView.tsx b/client/src/components/ServerIpsView.tsx index aa22ac5..7afaf61 100644 --- a/client/src/components/ServerIpsView.tsx +++ b/client/src/components/ServerIpsView.tsx @@ -1,4 +1,4 @@ -import { useEffect, useState } from 'react' +import { useState } from 'react' import { useServerIps, useServers } from '../hooks/swrHooks' import { IServer } from '../interfaces/servers' import { Combobox, Option, Spinner } from '@fluentui/react-components' @@ -10,10 +10,6 @@ export default function ServerIpsView() { const { serverIps, isLoading: serversLoading } = useServerIps(selectedOption, 0, 10) - useEffect(() => { - console.log(serverIps) - }, [serverIps]) - return ( <>