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 + +
+
+
+
+ ); +}