Skip to content

Commit

Permalink
Remove leaked new widget
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Oct 28, 2024
1 parent 1de907b commit 6e5b63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/volto-light-theme/src/config/widgets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { ConfigType } from '@plone/registry';
import BackgroundColorWidget from '../components/Widgets/BackgroundColorWidget';
import BlockWidthWidget from '../components/Widgets/BlockWidthWidget';
import BlockAlignmentWidget from '../components/Widgets/BlockAlignmentWidget';
import ColorPickerWidget from '../components/Widgets/ColorPickerWidget';
// import ColorPickerWidget from '../components/Widgets/ColorPickerWidget';

declare module '@plone/types' {
export interface WidgetsConfigByWidget {
Expand All @@ -17,7 +17,7 @@ export default function install(config: ConfigType) {
config.widgets.widget.BackgroundColorWidget = BackgroundColorWidget;
config.widgets.widget.blockWidth = BlockWidthWidget;
config.widgets.widget.blockAlignment = BlockAlignmentWidget;
config.widgets.widget.color_picker = ColorPickerWidget;
// config.widgets.widget.color_picker = ColorPickerWidget;

return config;
}

0 comments on commit 6e5b63d

Please sign in to comment.