diff --git a/crates/router/src/core/generic_link/payout_link/initiate/index.html b/crates/router/src/core/generic_link/payout_link/initiate/index.html
index fe574c37c3..26a0b1acb2 100644
--- a/crates/router/src/core/generic_link/payout_link/initiate/index.html
+++ b/crates/router/src/core/generic_link/payout_link/initiate/index.html
@@ -6,9 +6,9 @@
diff --git a/crates/router/src/core/generic_link/payout_link/status/script.js b/crates/router/src/core/generic_link/payout_link/status/script.js
index 42b5790359..828ea7f7fc 100644
--- a/crates/router/src/core/generic_link/payout_link/status/script.js
+++ b/crates/router/src/core/generic_link/payout_link/status/script.js
@@ -167,7 +167,7 @@ function redirectToEndUrl(returnUrl) {
? "{{i18n_redirecting_text}}"
: "{{i18n_redirecting_in_text}} " +
secondsLeft +
- " {{i18n_seconds_text}} ...";
+ " {{i18n_seconds_text}}";
if (statusRedirectTextNode instanceof HTMLDivElement) {
statusRedirectTextNode.innerText = innerText;
}
diff --git a/crates/router/src/core/generic_link/payout_link/status/styles.css b/crates/router/src/core/generic_link/payout_link/status/styles.css
index d566855312..ff922298fa 100644
--- a/crates/router/src/core/generic_link/payout_link/status/styles.css
+++ b/crates/router/src/core/generic_link/payout_link/status/styles.css
@@ -57,7 +57,7 @@ body {
font-size: 25px;
}
#merchant-header > img {
- height: 30px;
+ height: 48px;
}
#status-image {
diff --git a/crates/router/src/services/api/generic_link_response/context.rs b/crates/router/src/services/api/generic_link_response/context.rs
index 1ea45bd108..25d2e3f166 100644
--- a/crates/router/src/services/api/generic_link_response/context.rs
+++ b/crates/router/src/services/api/generic_link_response/context.rs
@@ -41,8 +41,8 @@ pub fn insert_locales_in_context_for_payout_link_status(context: &mut Context, l
let i18n_payout_link_status_title = t!("payout_link.status.title", locale = locale);
let i18n_success_text = t!("payout_link.status.text.success", locale = locale);
let i18n_success_message = t!("payout_link.status.message.success", locale = locale);
- let i18n_pending_text = t!("payout_link.status.text.pending", locale = locale);
- let i18n_pending_message = t!("payout_link.status.message.pending", locale = locale);
+ let i18n_pending_text = t!("payout_link.status.text.processing", locale = locale);
+ let i18n_pending_message = t!("payout_link.status.message.processing", locale = locale);
let i18n_failed_text = t!("payout_link.status.text.failed", locale = locale);
let i18n_failed_message = t!("payout_link.status.message.failed", locale = locale);
let i18n_ref_id_text = t!("payout_link.status.info.ref_id", locale = locale);