diff --git a/clean.sh b/clean.sh index e93aba6a..966cc177 100644 --- a/clean.sh +++ b/clean.sh @@ -1,2 +1,3 @@ # Easily kill process on port because sometimes nodemon fails to reboot -kill -9 $(lsof -t -i tcp:5000) \ No newline at end of file +kill -9 $(lsof -t -i tcp:5000) & +kill -9 $(lsof -t -i tcp:3001) # if running default for MacOS Monterey diff --git a/frontend/src/components/Modals/Keys.jsx b/frontend/src/components/Modals/Keys.jsx index 2ef84459..cffd40a8 100644 --- a/frontend/src/components/Modals/Keys.jsx +++ b/frontend/src/components/Modals/Keys.jsx @@ -1,5 +1,5 @@ import React, { useState, useEffect } from "react"; -import { X } from "react-feather"; +import { AlertCircle, X } from "react-feather"; import System from "../../models/system"; const noop = () => false; @@ -16,8 +16,6 @@ export default function KeysModal({ hideModal = noop }) { fetchKeys(); }, []); - const allSettingsValid = - !!settings && Object.values(settings).every((val) => !!val); return (
) : (
- {allSettingsValid ? ( -
-

All system settings are defined. You are good to go!

-
- ) : ( -
-

- ENV setttings are missing - this software will not - function fully. -
- After updating restart the server. -

-
- )} +
+ +

+ Ensure all fields are green before attempting to use + AnythingLLM or it may not function as expected! +

+