diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 57fd18b..89c719e 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -106,12 +106,12 @@ function Home() { const getEmptyFields = () => { return ( - !rating - ? "You must enter a rating!" - : fields[0].dynamicState[0].length < 2 - ? "You must enter a username at least 2 characters long!" - : !endpoint - ? "Endpoint is not set!" + !endpoint + ? "Endpoint is not set!" + : !rating + ? "You must input a rating!" + : fields[0].dynamicState[0].length < 2 + ? "You must enter a username at least 2 characters long!" : "" ); }