blob: acfbc60e92727358678a9c33bc43b53ae06bdd5d (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
});
}
|