From bfc2c3cc1e6e757b5a8bac45658d72971312d865 Mon Sep 17 00:00:00 2001 From: chenhang Date: Tue, 30 Jun 2026 18:02:14 +0800 Subject: [PATCH] chore(subscription): remove unused cancel route --- src/app/subscription/cancel/page.tsx | 55 ---------------------------- 1 file changed, 55 deletions(-) delete mode 100644 src/app/subscription/cancel/page.tsx diff --git a/src/app/subscription/cancel/page.tsx b/src/app/subscription/cancel/page.tsx deleted file mode 100644 index 802cf980..00000000 --- a/src/app/subscription/cancel/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -"use client"; -/** - * 订阅取消回跳页 - * - * 流程: - * 1. 用户在支付服务托管页点 "Cancel" / 关闭页面 - * 2. 支付服务重定向到 `/subscription/cancel` - * 3. 这个页面显示 "已取消" + 跳回 `/subscription` - * - * 不需要任何后端逻辑(没付款发生) - */ -import Link from "next/link"; - -import { MobileShell } from "@/app/_components/core/mobile-shell"; -import { ROUTES } from "@/router/routes"; - -export default function SubscriptionCancelPage() { - return ( - -
-

- Checkout cancelled -

-

- You did not complete the subscription. No payment was charged. -

- - Try again - -
-
- ); -}