Skip to content

Commit

Permalink
refactor: rename configs -> user-packs
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Feb 9, 2025
1 parent e9ad1a8 commit eb48a9a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/settings-ui/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { HashRouter, Navigate, Route } from '@solidjs/router';
import { render } from 'solid-js/web';

import { AppLayout, UserPacksProvider } from './common';
import { WidgetPack, WidgetPacks } from './configs';
import { WidgetPack, WidgetPacks } from './user-packs';

render(
() => (
Expand All @@ -13,10 +13,10 @@ render(
<HashRouter>
<Route
path="/"
component={() => <Navigate href="/widget-packs" />}
component={() => <Navigate href="/user-packs" />}
/>
<Route path="/widget-packs" component={WidgetPacks} />
<Route path="/widget-packs/:path" component={WidgetPack} />
<Route path="/user-packs" component={WidgetPacks} />
<Route path="/user-packs/:path" component={WidgetPack} />
</HashRouter>
</AppLayout>
</UserPacksProvider>
Expand Down
File renamed without changes.

0 comments on commit eb48a9a

Please sign in to comment.