new changes

This commit is contained in:
n4ze3m
2024-02-15 00:26:13 +05:30
parent 31cac3b5b7
commit 31730cad81
12 changed files with 711 additions and 54 deletions

View File

@@ -9,7 +9,7 @@ type Props = {
export const Settings = ({ setClose }: Props) => {
return (
<div className="my-6">
<div className="my-6 max-h-[80vh] overflow-y-auto">
<Tabs
tabPosition="left"
defaultActiveKey="1"
@@ -23,14 +23,14 @@ export const Settings = ({ setClose }: Props) => {
{
id: "2",
key: "2",
label: "Ollama",
children: <SettingsOllama />
label: "Web UI Settings",
children: <SettingOther />
},
{
id: "3",
key: "3",
label: "Other",
children: <SettingOther />
label: "Ollama Settings",
children: <SettingsOllama />
}
]}
/>