This commit is contained in:
Kar
2025-03-26 12:30:02 +05:30
parent 5c50e77a1c
commit 63c973f1ca
2 changed files with 3 additions and 2 deletions

View File

@@ -192,6 +192,7 @@ export const DomainSetupForm = ({ defaultSubdomain }) => {
// Simulate an API call to validate the domain
setTimeout(() => {
// Simulate a real domain check - in a real app this would be an API call
// call /host-api/v1/domains/validate/?domain=domain.com
const checkResult = true; // Assume domain is valid for demo
setIsValidating(false);
@@ -205,7 +206,7 @@ export const DomainSetupForm = ({ defaultSubdomain }) => {
}
validateForm();
}, 1500);
}, 500);
};
// Check DNS configuration