{isDynamicInput && inputs != undefined && (
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx
index 4bd738f9..53f26c94 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx
@@ -9,7 +9,7 @@ export default function SlashCommandsButton({ showing, setShowSlashCommand }) {
data-tooltip-id="tooltip-slash-cmd-btn"
data-tooltip-content="View all available slash commands for chatting."
onClick={() => setShowSlashCommand(!showing)}
- className={`flex justify-center items-center opacity-60 hover:opacity-100 cursor-pointer ${
+ className={`flex justify-center items-center opacity-30 hover:opacity-100 cursor-pointer ${
showing ? "!opacity-100" : ""
}`}
>
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx
index f545d692..5abb4c0b 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx
@@ -8,6 +8,7 @@ import { isMobile } from "react-device-detect";
import debounce from "lodash.debounce";
export default function PromptInput({
+ className,
workspace,
message,
submit,
@@ -52,7 +53,9 @@ export default function PromptInput({
const watchForSlash = debounce(checkForSlash, 300);
return (
-