Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion webapp/_webapp/src/views/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const Settings = () => {
<SettingsHeader />
<div className="pd-app-tab-content-body">
<UISettings />
<BetaFeatureSettings />
{/* <BetaFeatureSettings /> */}
Copy link

Copilot AI Dec 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this beta feature is being permanently disabled, consider removing the component entirely instead of commenting it out. If it's temporary, consider using a feature flag or environment variable (like the pattern used for UserDeveloperTools and RealDeveloperTools on lines 38-39) for cleaner code. Additionally, the import for BetaFeatureSettings (line 9) should be removed if the component won't be used.

Copilot uses AI. Check for mistakes.
<AccountSettings />
<SettingsFooter />
{enableUserDeveloperTools && <UserDeveloperTools />}
Expand Down
Loading