chore: fix external compliance mock

This commit is contained in:
Rafael Taranto 2025-05-27 17:51:11 +01:00
parent a16abfb709
commit 144e2c4616
2 changed files with 11 additions and 5 deletions

View file

@ -5,7 +5,9 @@ const { APPROVED } = require('../consts')
const CODE = 'mock-compliance'
const createLink = (settings, userId, level) => {
return `this is a mock external link, ${userId}, ${level}`
return Promise.resolve({
url: `this is a mock external link, ${userId}, ${level}`,
})
}
const getApplicantStatus = account => {