Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rot1024 committed Mar 18, 2024
1 parent 30ae360 commit bc8b802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ require (
github.com/hallazzang/echo-compose v1.0.1
github.com/jarcoal/httpmock v1.3.1
github.com/joho/godotenv v1.5.1
github.com/k0kubun/pp/v3 v3.2.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/labstack/echo/v4 v4.11.4
github.com/oapi-codegen/runtime v1.1.1
Expand Down Expand Up @@ -104,7 +105,6 @@ require (
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/jpillora/opts v1.2.3 // indirect
github.com/k0kubun/pp/v3 v3.2.0 // indirect
github.com/klauspost/compress v1.17.5 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
Expand Down
4 changes: 2 additions & 2 deletions web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ import { Provider as I18nProvider } from "@reearth-cms/i18n";
const router = createBrowserRouter(
createRoutesFromElements(
<>
<Route path="/" element={<RootPage />} />
<Route path="/auth/*" element={<RootPage />} />
<Route index element={<RootPage />} />
<Route path="auth/*" element={<RootPage />} />
<Route path="workspace" element={<CMSPageWrapper />}>
<Route index element={<Workspace />} />
<Route path=":workspaceId" element={<Workspace />} />
Expand Down

0 comments on commit bc8b802

Please sign in to comment.