From 9d73f24b55655cdbb7cc181794a79a39087aaa24 Mon Sep 17 00:00:00 2001 From: iwata Date: Wed, 24 May 2023 11:47:47 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"=E5=80=8B=E5=88=A5=E3=81=ABanchor-is-?= =?UTF-8?q?valid=E3=82=92=E4=BD=BF=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B?= =?UTF-8?q?=E5=87=A6=E7=90=86=E3=82=92=E5=89=8A=E9=99=A4"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 2c5909189e741ccba98add5ce581e7855b40b65e. --- dictation_client/src/pages/LicensePage/index.tsx | 3 +++ dictation_client/src/pages/UserListPage/index.tsx | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dictation_client/src/pages/LicensePage/index.tsx b/dictation_client/src/pages/LicensePage/index.tsx index 7bfc585..7acc098 100644 --- a/dictation_client/src/pages/LicensePage/index.tsx +++ b/dictation_client/src/pages/LicensePage/index.tsx @@ -13,6 +13,9 @@ import postAdd from "../../assets/images/post_add.svg"; import history from "../../assets/images/history.svg"; import key from "../../assets/images/key.svg"; +// eslintの検査エラー無視設定 +/* eslint-disable jsx-a11y/anchor-is-valid */ + const LicensePage: React.FC = (): JSX.Element => { const { instance } = useMsal(); const dispatch: AppDispatch = useDispatch(); diff --git a/dictation_client/src/pages/UserListPage/index.tsx b/dictation_client/src/pages/UserListPage/index.tsx index 115c973..b83da52 100644 --- a/dictation_client/src/pages/UserListPage/index.tsx +++ b/dictation_client/src/pages/UserListPage/index.tsx @@ -16,6 +16,9 @@ import checkFill from "../../assets/images/check_fill.svg"; import circle from "../../assets/images/circle.svg"; import { UserAddPopup } from "./popup"; +// eslintの検査エラー無視設定 +/* eslint-disable jsx-a11y/anchor-is-valid */ + const UserListPage: React.FC = (): JSX.Element => { const dispatch: AppDispatch = useDispatch(); const [t] = useTranslation();