FoundKey/packages/client/src/scripts/show-suspended-dialog.ts
Johann150 609fb91ca1
Some checks failed
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/lint-backend Pipeline failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-client Pipeline failed
fix some lints automatically
2022-08-10 22:42:30 +02: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,
});
}