Skip to content

Commit

Permalink
Removed filter and navigation type from visualization selector
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas committed Nov 5, 2024
1 parent f185e17 commit 1cb1a3c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ const VisualizationSelector: FC = () => {
className={SIDEBAR_POPOVER_CLASS}
>
<div className="flex h-full flex-col overflow-y-auto">
{VALID_WIDGET_VISUALIZATIONS.map((v) => (
{VALID_WIDGET_VISUALIZATIONS.filter(
(v) => v !== "filter" && v !== "navigation",
).map((v) => (
<Button
key={`v-list-item-${v}`}
variant="clean"
Expand Down

0 comments on commit 1cb1a3c

Please sign in to comment.