Update os.ts

This commit is contained in:
かっこかり 2024-11-05 15:16:46 +09:00 committed by GitHub
parent 0f7ee33201
commit e2c9043179
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 4 deletions

View File

@ -73,10 +73,6 @@ export const apiWithDialog = (<E extends keyof Misskey.Endpoints, P extends Miss
} else if (err.code === 'ROLE_PERMISSION_DENIED') {
title = i18n.ts.permissionDeniedError;
text = i18n.ts.permissionDeniedErrorDescription;
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
} else if (customErrors && customErrors[err.code] != null) {
title = customErrors[err.code].title;
text = customErrors[err.code].text;
} else if (err.code.startsWith('TOO_MANY')) {
title = i18n.ts.youCannotCreateAnymore;
text = `${i18n.ts.error}: ${err.id}`;