fix(dashboard): remove isPlatform check from verify button disable logic (#2737)
This commit is contained in:
committed by
GitHub
parent
6fb0cc27aa
commit
87a37cfc08
5
.changeset/brown-boats-trade.md
Normal file
5
.changeset/brown-boats-trade.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@nhost/dashboard': patch
|
||||
---
|
||||
|
||||
fix: remove unnecessary isPlatform check from verify button disable logic on custom domains
|
||||
@@ -131,7 +131,7 @@ export default function VerifyDomain({
|
||||
</div>
|
||||
{isPlatform ? (
|
||||
<Button
|
||||
disabled={loading || !hostname || isPlatform}
|
||||
disabled={loading || !hostname}
|
||||
onClick={handleVerifyDomain}
|
||||
className="mt-4 sm:absolute sm:bottom-0 sm:right-0 sm:mt-0"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user