mirror of
https://github.com/misskey-dev/misskey
synced 2024-12-15 15:18:27 +09:00
0e4a111f81
Resolve #7779
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import * as os from '@/os';
|
|
import { i18n } from '@/i18n';
|
|
|
|
export function showSuspendedDialog() {
|
|
return os.dialog({
|
|
type: 'error',
|
|
title: i18n.locale.yourAccountSuspendedTitle,
|
|
text: i18n.locale.yourAccountSuspendedDescription
|
|
});
|
|
}
|