What do I need to do to redirect a user from an email link into my Expo app?

Hello Expo fam.

I am using expo-dev-client to develop my standalone app.
I am using firebase to send a verification link to a users email and then the user clicks the link and gets redirected back into my app (i.e. exp://).

Google wont let me use exp:// (example scheme) in the list of Authorized Domains. I’ve tried using com.company.app but that’s not working either.

This is where I need to add the authorized domain for my redirect

So I think I need to use exp:// but how do I implement this as a redirect URL?

Here is my code below:

auth
      .sendSignInLinkToEmail("<email>", {
        // this is the url that I need to link back into my expo app.
        url: "<continueURL>",
        handleCodeInApp: true
      })
      .then((res) => console.log(res))
      .catch((e) => console.log(e));