mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 01:53:09 +02:00
10 lines
236 B
TypeScript
10 lines
236 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,
|
|
});
|
|
}
|