1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 17:05:55 +02:00
Files
misskey/packages/client/src/scripts/show-suspended-dialog.ts
2022-01-28 11:39:49 +09:00

11 lines
235 B
TypeScript

import * as os from '@/os';
import { i18n } from '@/i18n';
export function showSuspendedDialog() {
return os.alert({
type: 'error',
title: i18n.ts.yourAccountSuspendedTitle,
text: i18n.ts.yourAccountSuspendedDescription
});
}