okay so like this? ` EmailPassword.init({ ov...
# support-questions-legacy
p
okay so like this?
Copy code
EmailPassword.init({
      override: {
        functions: (originalImplementation) => {
          return {
            ...originalImplementation,
            doesEmailExist: async function(input) {
              // do something here to call that API and cause a popup?
            }
          }
        }
      }
    }),