diff --git a/dictation_client/src/features/license/licenseOrderHistory/operations.ts b/dictation_client/src/features/license/licenseOrderHistory/operations.ts
index 1252700..c0c38f3 100644
--- a/dictation_client/src/features/license/licenseOrderHistory/operations.ts
+++ b/dictation_client/src/features/license/licenseOrderHistory/operations.ts
@@ -250,9 +250,7 @@ export const cancelIssueAsync = createAsyncThunk<
let errorMessage = getTranslationID("common.message.internalServerError");
- if (error.code === "E000108") {
- errorMessage = getTranslationID("common.message.permissionDeniedError");
- } else if (error.code === "E010809") {
+ if (error.code === "E010809") {
errorMessage = getTranslationID(
"orderHistoriesPage.message.alreadyLicenseStatusChanged"
);
diff --git a/dictation_client/src/features/partner/operations.ts b/dictation_client/src/features/partner/operations.ts
index e4fed0c..01b2562 100644
--- a/dictation_client/src/features/partner/operations.ts
+++ b/dictation_client/src/features/partner/operations.ts
@@ -101,10 +101,7 @@ export const getPartnerInfoAsync = createAsyncThunk<
return ret;
} catch (e) {
const error = createErrorObject(e);
- const errorMessage =
- error.code === "E000108"
- ? getTranslationID("common.message.permissionDeniedError")
- : getTranslationID("common.message.internalServerError");
+ const errorMessage = getTranslationID("common.message.internalServerError");
thunkApi.dispatch(
openSnackbar({
diff --git a/dictation_client/src/pages/LicensePage/licenseSummary.tsx b/dictation_client/src/pages/LicensePage/licenseSummary.tsx
index 1744105..8700902 100644
--- a/dictation_client/src/pages/LicensePage/licenseSummary.tsx
+++ b/dictation_client/src/pages/LicensePage/licenseSummary.tsx
@@ -109,9 +109,7 @@ export const LicenseSummary: React.FC
- {t(getTranslationID("signupPage.text.pageExplanation"))}
-
- {t(getTranslationID("LicenseSummaryPage.label.subTitle"))}
-
+ {"会社名" /* TODO 会社名を表示する */}
{t(getTranslationID("signupPage.text.title"))}
-