diff --git a/src/routes/(main)/me/account/payment/+page.svelte b/src/routes/(main)/me/account/payment/+page.svelte index a4b7179..c72a982 100644 --- a/src/routes/(main)/me/account/payment/+page.svelte +++ b/src/routes/(main)/me/account/payment/+page.svelte @@ -44,7 +44,7 @@ return async ({ result }) => { if (!result?.data.success) return; - invalidate('server:fetch'); + invalidate('server:card'); await applyAction(result); // Apply the action, which will update the form state }; }; diff --git a/src/routes/(main)/me/account/prepay/+page.svelte b/src/routes/(main)/me/account/prepay/+page.svelte index b109e41..29daf42 100644 --- a/src/routes/(main)/me/account/prepay/+page.svelte +++ b/src/routes/(main)/me/account/prepay/+page.svelte @@ -43,7 +43,7 @@ return async ({ result }) => { if (!result?.data.success) return; - invalidate('server:fetch'); + invalidate('server:balance'); await applyAction(result); // Apply the action, which will update the form state }; };