Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide custom domains #1458

Merged
merged 5 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Clean up
  • Loading branch information
Kitenite committed Feb 24, 2025
commit 50c8af3c3560bd00367c56bdd17805f9a29fcb1b
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const DomainTab = observer(() => {
<div className="space-y-8">
<BaseDomain />
<Separator />
{/* TODO: Uncomment after freestyle bug is fixed */}
{/* <CustomDomain /> */}
<Teaser />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export const PublishDropdown = observer(
type={DomainType.BASE}
state={baseDomainState}
/>

{/* TODO: Uncomment after freestyle bug is fixed */}
{/* <Separator />
<DomainSection
setIsOpen={setIsOpen}
Expand Down