blob: e11569ecd46a119e36a18b977b7816e084095b4c (
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,
});
}
|