mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-09 07:06:56 +00:00
14 lines
250 B
TypeScript
14 lines
250 B
TypeScript
import { $i } from '@/account';
|
|
import { i18n } from '@/i18n';
|
|
import { dialog } from '@/os';
|
|
|
|
export function pleaseLogin() {
|
|
if ($i) return;
|
|
|
|
dialog({
|
|
title: i18n.locale.signinRequired,
|
|
text: null
|
|
});
|
|
|
|
throw new Error('signin required');
|
|
}
|