From 60857007bd38fe9586f6f2019298bdad4d8368b4 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 1 Nov 2025 22:11:50 +0100 Subject: [PATCH] Fix --- web/pages/delete-account.tsx | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/web/pages/delete-account.tsx b/web/pages/delete-account.tsx index cffc629b..815d3dc2 100644 --- a/web/pages/delete-account.tsx +++ b/web/pages/delete-account.tsx @@ -1,11 +1,9 @@ -import { PageBase } from "web/components/page-base"; -import { SEO } from "web/components/SEO"; -import { Button } from "web/components/buttons/button"; -import { useRouter } from 'next/router'; +import {PageBase} from "web/components/page-base"; +import {SEO} from "web/components/SEO"; +import {Button} from "web/components/buttons/button"; export default function DeleteAccountPage() { - const router = useRouter(); - + const handleRequestDeletion = () => { // This would typically open an email client or a form window.location.href = 'mailto:hello@compassmeet.com?subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account%20and%20associated%20data.%0D%0A%0D%0AUsername%3A%20%5BYour%20Username%5D%0D%0A%0D%0AAdditional%20notes%3A'; @@ -21,12 +19,13 @@ export default function DeleteAccountPage() { description={'Request account deletion for Compass'} url={'/delete-account'} /> - +

Delete Your Account

- We're sorry to see you go. You can delete your account in the Settings page. Otherwise, here's how to request account deletion by email. + We're sorry to see you go. You can delete your account in the Settings page. Otherwise, here's how to + request account deletion by email.

@@ -34,14 +33,16 @@ export default function DeleteAccountPage() {

How to Delete Your Account

    -
  1. Send an email to hello@compassmeet.com with the subject line "Account Deletion Request"
  2. +
  3. Send an email to hello@compassmeet.com with the subject line "Account Deletion + Request" +
  4. Include your username and email address associated with your account
  5. Let us know if you'd like to download your data before deletion
  6. We'll process your request within 30 days
- +
-