From 231864b0bf52d25533b98bd2a6ddb1c1f0ace056 Mon Sep 17 00:00:00 2001 From: Bogdan Chadkin Date: Sun, 29 Jun 2025 12:31:38 +0300 Subject: [PATCH 1/3] tmp From 274e5549adb0cdc4df1ace7231d469b693cf5865 Mon Sep 17 00:00:00 2001 From: Bogdan Chadkin Date: Sun, 29 Jun 2025 12:33:20 +0300 Subject: [PATCH 2/3] Add extra TXT --- apps/builder/app/builder/features/topbar/domains.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/builder/app/builder/features/topbar/domains.tsx b/apps/builder/app/builder/features/topbar/domains.tsx index b94b548c4aad..8ad206585bd8 100644 --- a/apps/builder/app/builder/features/topbar/domains.tsx +++ b/apps/builder/app/builder/features/topbar/domains.tsx @@ -301,6 +301,12 @@ const DomainItem = ({ value: projectDomain.expectedTxtRecord, ttl: 300, } as const, + { + type: "TXT", + host: "another-one", + value: projectDomain.expectedTxtRecord, + ttl: 300, + } as const, ]; return ( From c8def280d8e5598395eb37db953d39edcd03c3a3 Mon Sep 17 00:00:00 2001 From: Bogdan Chadkin Date: Sun, 29 Jun 2025 12:43:57 +0300 Subject: [PATCH 3/3] Try similar host --- apps/builder/app/builder/features/topbar/domains.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/builder/app/builder/features/topbar/domains.tsx b/apps/builder/app/builder/features/topbar/domains.tsx index 8ad206585bd8..00656f4ffa22 100644 --- a/apps/builder/app/builder/features/topbar/domains.tsx +++ b/apps/builder/app/builder/features/topbar/domains.tsx @@ -303,7 +303,7 @@ const DomainItem = ({ } as const, { type: "TXT", - host: "another-one", + host: "_webstudio_is", value: projectDomain.expectedTxtRecord, ttl: 300, } as const,