summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/show-moved-dialog.ts
blob: acb26c36e239c07cf049e8dfece0acb3a372debc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as os from '@/os';
import { $i } from '@/account';
import { i18n } from '@/i18n';

export function showMovedDialog() {
	if (!$i) return;
	if (!$i.movedTo) return;

	os.alert({
		type: 'error',
		title: i18n.ts.accountMovedShort,
		text: i18n.ts.operationForbidden,
	});

	throw new Error('account moved');
}