We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c68966 commit ceaa1e1Copy full SHA for ceaa1e1
gui/src/components/modelSelection/platform/AssistantSelect.tsx
@@ -53,6 +53,7 @@ const AssistantSelectOption = ({
53
const tinyFont = useFontSize(-4);
54
55
const navigate = useNavigate();
56
+ const { setSelectedSection } = useLump();
57
58
const hasFatalErrors = useMemo(() => {
59
return !!profile.errors?.find((error) => error.fatal);
@@ -78,7 +79,8 @@ const AssistantSelectOption = ({
78
79
80
function handleClickError() {
81
if (profile.id === "local") {
- navigate(ROUTES.CONFIG_ERROR);
82
+ navigate(ROUTES.HOME);
83
+ setSelectedSection("error");
84
} else {
85
ideMessenger.post("config/openProfile", { profileId: profile.id });
86
}
0 commit comments