If you received the payment, the order status should have changed to "Stripe SCA [Transactions]" and the payment details should be added to the order status history.
It it's not, then you probably didn't setup the webhook on your stripe account.
See Instructions (They are also linked on the help button in Modules -> Payment):
https://phoenixcart.org/phoenixcartwiki ... Stripe_SCA
Configuration
The basic configuration of the Stripe SCA module is the same as the standard Stripe module, requiring Publishable and Secret API keys, however as the order fulfillment has been moved to a webhook, you need to add the address of the Stripe SCA webhook at your store to your Stripe account dashboard, and add the webhook signing secret it generates to the Stripe SCA payment module configuration.
Login to your account at the Stripe web site, and select Developers > Webhooks
select '+ Add endpoint' at the upper right of the page
set the URL to:
https://yourstore.url/ext/modules/payme ... ebhook.php
select version as 'Latest API version'
select event 'payment_intent.succeeded' and 'payment_intent.payment_failed'
click 'add endpoint' to save the webhook endpoint.
Then select the new endpoint URL from the list of end points, and then 'click to reveal' to see the Signing Secret. Copy and paste the text of the signing secret to the Webhook Signing Secret in the Stripe SCA module configuration form.
Note that the 'view test data' switch at the Stripe dashboard toggles between live and test modes, and there are seperate API keys and webhooks in each mode. You have to create a webhook endpoint in the test mode to be used in testing the module. If your test environment is on a local network machine that is not directly accessible from the internet, you can create a free account at ngrok.com, to create a tunnel to the webhook URL on your local test machine. See
https://stripe.com/docs/webhooks/setup for more details.
The Stripe SCA module adds a log table, stripe_event_log, to the database, and if you select 'Log events?' in the Stripe SCA configuration, it will record each Stripe API call with the parameters that are passed to Stripe and the response received.