1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-02 08:48:32 +09:00
cherrypick/packages/frontend/src/scripts/show-suspended-dialog.ts
2022-12-27 14:36:33 +09:00

11 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,
});
}