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:
masaaki 2023-06-02 04:26:08 +00:00
parent bc3e0090ca
commit 785535e4e6

View File

@ -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 />} />}