10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
import getCurrentAccount from '../common/get-current-account';
|
|
|
|
const isStillVerified = async ($: IGlobalVariable) => {
|
|
const account = await getCurrentAccount($);
|
|
return !!account;
|
|
};
|
|
|
|
export default isStillVerified;
|