From 3700b6e383d04666a2a6d98f29799fbc1e0ecc59 Mon Sep 17 00:00:00 2001
From: Kiara Grouwstra <kiara@procolix.eu>
Date: Wed, 19 Mar 2025 16:01:03 +0100
Subject: [PATCH] remove option fediversity.eu (#257)

removing fediversity.eu from form options as its subdomains are running live services

Reviewed-on: https://git.fediversity.eu/Fediversity/Fediversity/pulls/257
Reviewed-by: Kevin Muller <kevin@procolix.com>
Co-authored-by: Kiara Grouwstra <kiara@procolix.eu>
Co-committed-by: Kiara Grouwstra <kiara@procolix.eu>
---
 panel/src/panel/configuration/forms.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/panel/src/panel/configuration/forms.py b/panel/src/panel/configuration/forms.py
index 73216169..e79ecf5c 100644
--- a/panel/src/panel/configuration/forms.py
+++ b/panel/src/panel/configuration/forms.py
@@ -39,11 +39,10 @@ class Configuration(BaseModel):
     # XXX: hard-code available apex domains for now,
     #      they will be prefixed by the user name
     class Domain(Enum):
-        EU = "fediversity.eu"
         NET = "fediversity.net"
 
     domain: Domain = Field(
-        default=Domain.EU,
+        default=Domain.NET,
         description="DNS domain where to expose services"
     )