2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2021-09-18 12:23:12 -05:00
|
|
|
|
|
|
|
export function showSuspendedDialog() {
|
2021-11-18 03:45:58 -06:00
|
|
|
return os.alert({
|
2021-09-18 12:23:12 -05:00
|
|
|
type: 'error',
|
2022-01-27 20:39:49 -06:00
|
|
|
title: i18n.ts.yourAccountSuspendedTitle,
|
|
|
|
text: i18n.ts.yourAccountSuspendedDescription
|
2021-09-18 12:23:12 -05:00
|
|
|
});
|
|
|
|
}
|