From ae564777142b7ba88304c53b6c5120f4c655ea47 Mon Sep 17 00:00:00 2001 From: "T. Narantuya" Date: Sat, 6 Sep 2025 10:11:39 +0900 Subject: [PATCH] Refactor SIM cancel page layout and improve readability - Updated the formatting of the SIM cancel page for better readability, including consistent use of quotes and improved line breaks in text. - Enhanced the layout of buttons and links for a more user-friendly interface. - Added a "Back" link to improve navigation options for users. --- .../subscriptions/[id]/sim/cancel/page.tsx | 46 ++++++++++++++++--- 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/apps/portal/src/app/subscriptions/[id]/sim/cancel/page.tsx b/apps/portal/src/app/subscriptions/[id]/sim/cancel/page.tsx index abc455fd..d1dffb4a 100644 --- a/apps/portal/src/app/subscriptions/[id]/sim/cancel/page.tsx +++ b/apps/portal/src/app/subscriptions/[id]/sim/cancel/page.tsx @@ -1,4 +1,4 @@ -\"use client\"; +"use client"; import Link from "next/link"; import { useParams } from "next/navigation"; @@ -31,18 +31,52 @@ export default function SimCancelPage() {
- ← Back to SIM Management + + ← Back to SIM Management +

Cancel SIM

-

Cancel SIM: Permanently cancel your SIM service. This action cannot be undone and will terminate your service immediately.

+

+ Cancel SIM: Permanently cancel your SIM service. This action cannot be + undone and will terminate your service immediately. +

- {message &&
{message}
} - {error &&
{error}
} + {message && ( +
+ {message} +
+ )} + {error && ( +
+ {error} +
+ )}
This is a destructive action. Your service will be terminated immediately.
- + + Back + +
+
+
+
+ ); +}