Skip to content

Commit

Permalink
feat: Remove Search (Beta) from navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
n4ze3m committed Sep 7, 2024
1 parent 27d8422 commit f597cfe
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions app/ui/src/Layout/BotLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
PuzzlePieceIcon,
EyeDropperIcon,
ChatBubbleLeftRightIcon,
MagnifyingGlassIcon,
//MagnifyingGlassIcon,
} from "@heroicons/react/24/outline";

import { Link, useParams, useLocation, useNavigate } from "react-router-dom";
Expand All @@ -23,11 +23,11 @@ const navigation = [
href: "/bot/:id",
icon: SparklesIcon,
},
{
name: "Search (Beta)",
href: "/bot/:id/search",
icon: MagnifyingGlassIcon,
},
// {
// name: "Search (Beta)",
// href: "/bot/:id/search",
// icon: MagnifyingGlassIcon,
// },
{
name: "Data Sources",
href: "/bot/:id/data-sources",
Expand Down
12 changes: 6 additions & 6 deletions app/ui/src/Layout/BotPlaygroundLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
EyeDropperIcon,
SparklesIcon,
ChatBubbleLeftRightIcon,
MagnifyingGlassIcon,
// MagnifyingGlassIcon,
} from "@heroicons/react/24/outline";

import { Link, useParams, useLocation, useNavigate } from "react-router-dom";
Expand All @@ -23,11 +23,11 @@ const navigation = [
href: "/bot/:id",
icon: SparklesIcon,
},
{
name: "Search (Beta)",
href: "/bot/:id/search",
icon: MagnifyingGlassIcon,
},
// {
// name: "Search (Beta)",
// href: "/bot/:id/search",
// icon: MagnifyingGlassIcon,
// },
{
name: "Data Sources",
href: "/bot/:id/data-sources",
Expand Down

0 comments on commit f597cfe

Please sign in to comment.