Skip to content

Commit d206057

Browse files
committed
s/setting/settings
1 parent bf2db51 commit d206057

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llmstack/client/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const LoginPage = lazy(() => import("./pages/login"));
2929
const SignupPage = lazy(() => import("./pages/signup"));
3030
const DashboardPage = lazy(() => import("./pages/dashboard"));
3131
const HistoryPage = lazy(() => import("./pages/history"));
32-
const SettingPage = lazy(() => import("./pages/setting"));
32+
const SettingsPage = lazy(() => import("./pages/settings"));
3333
const OrganizationPage = lazy(() => import("./pages/organization"));
3434
const PublishedAppPage = lazy(() => import("./pages/PublishedApp"));
3535
const DatasourceRenderPage = lazy(() => import("./pages/DatasourceRender"));
@@ -538,7 +538,7 @@ let routes = [
538538
path: "/settings",
539539
element: (
540540
<App>
541-
<SettingPage />
541+
<SettingsPage />
542542
</App>
543543
),
544544
},

llmstack/client/src/pages/setting.jsx renamed to llmstack/client/src/pages/settings.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ const SettingPage = () => {
383383
</Button>
384384
<p>&nbsp;</p>
385385
<Typography variant="h6" className="section-header">
386-
Model Providers
386+
Providers
387387
</Typography>
388388
<ProviderConfigs
389389
configs={profileData?.provider_configs || {}}

0 commit comments

Comments
 (0)