From 7e7a5074e0a3f4b3cf6763921ed3d8870714e688 Mon Sep 17 00:00:00 2001 From: bkellam Date: Tue, 24 Sep 2024 20:34:06 -0700 Subject: [PATCH] add 'indexing in progress' dialog to better indicate that indexing is (likely) occuring --- src/app/page.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b95c7768..30e65242 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,6 +8,7 @@ import { NavigationMenu } from "./navigationMenu"; import { RepositoryCarousel } from "./repositoryCarousel"; import { SearchBar } from "./searchBar"; import { Separator } from "@/components/ui/separator"; +import { SymbolIcon } from "@radix-ui/react-icons"; export default async function Home() { @@ -110,15 +111,12 @@ const RepositoryList = async () => { const repos = _repos.List.Repos.map((repo) => repo.Repository); if (repos.length === 0) { - return - Get started - - {` configuring Sourcebot.`} - - ; + return ( +
+ + indexing in progress... +
+ ) } return (