Skip to content
Snippets Groups Projects
Commit 05870ec8 authored by timothycarambat's avatar timothycarambat
Browse files

chore: update no agent error message

style: update error message width
parent f6ebf847
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ const HistoricalMessage = ({
role === "user" ? USER_BACKGROUND_COLOR : AI_BACKGROUND_COLOR
}`}
>
<div className="py-8 px-4 w-full flex gap-x-5 md:max-w-[800px] flex-col">
<div className="py-8 px-4 w-full flex gap-x-5 md:max-w-[80%] flex-col">
<div className="flex gap-x-5">
<ProfileImage role={role} workspace={workspace} />
<div className="p-2 rounded-lg bg-red-50 text-red-500">
......
......@@ -139,7 +139,9 @@ class AgentHandler {
break;
default:
throw new Error("No provider found to power agent cluster.");
throw new Error(
"No workspace agent provider set. Please set your agent provider in the workspace's settings"
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment