refactor: 不要なas anyを除去
This commit is contained in:
parent
4132965807
commit
1af3041b39
|
@ -34,7 +34,7 @@ export const apiWithDialog = (<E extends keyof Misskey.Endpoints = keyof Misskey
|
||||||
const promise = misskeyApi(endpoint, data, token);
|
const promise = misskeyApi(endpoint, data, token);
|
||||||
promiseDialog(promise, null, async (err) => {
|
promiseDialog(promise, null, async (err) => {
|
||||||
let title: string | undefined;
|
let title: string | undefined;
|
||||||
let text = err.message + '\n' + (err as any).id;
|
let text = err.message + '\n' + err.id;
|
||||||
if (err.code === 'INTERNAL_ERROR') {
|
if (err.code === 'INTERNAL_ERROR') {
|
||||||
title = i18n.ts.internalServerError;
|
title = i18n.ts.internalServerError;
|
||||||
text = i18n.ts.internalServerErrorDescription;
|
text = i18n.ts.internalServerErrorDescription;
|
||||||
|
|
Loading…
Reference in New Issue