import { useMainStore } from '@/store'; const validateISSClientTag = (clientTag) => { const store = useMainStore(); return store.validateClientTag(clientTag) .then( (response) => response, () => null ); }; export default validateISSClientTag;