Merged PR 125: licenseのAppRouterについて、タスク1791対応後にRouteAuthGuardの設定を入れる
## 概要 [Task1789: licenseのAppRouterについて、タスク1791対応後にRouteAuthGuardの設定を入れる](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1789) - licenseページについてRouteAuthGuardを実装しました ※「バグ 1791: 言語情報を切り替えるとログインできない」の影響で多言語対応の確認ができないので、一時的にRouteAuthGuardを外していたのを、バグ解消により修正しました。 ## レビューポイント - 修正内容に問題ないか ## UIの変更 - 特になし ## 動作確認状況 - ローカルで確認済 ## 補足 - 特になし
This commit is contained in:
parent
bc3e0090ca
commit
785535e4e6
@ -37,11 +37,10 @@ const AppRouter: React.FC = () => (
|
||||
path="/user"
|
||||
element={<RouteAuthGuard component={<UserListPage />} />}
|
||||
/>
|
||||
|
||||
{/* XXX 本来{<RouteAuthGuard component={<LicensePage />}とすべきだが、タスク1786により
|
||||
多言語でのログインが出来なく、多言語対応の確認ができないため一時的に外す
|
||||
タスク1789で対応予定 */}
|
||||
<Route path="/license" element={<LicensePage />} />
|
||||
<Route
|
||||
path="/license"
|
||||
element={<RouteAuthGuard component={<LicensePage />} />}
|
||||
/>
|
||||
<Route
|
||||
path="/xxx"
|
||||
element={<RouteAuthGuard component={<SamplePage />} />}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user