fix(search-command): remove console log for project debugging

This commit is contained in:
Mauricio Siu
2025-09-06 20:36:01 -06:00
parent b4e29dab39
commit 3b7d009841

View File

@@ -89,7 +89,6 @@ export const SearchCommand = () => {
<CommandGroup heading={"Projects"}>
<CommandList>
{data?.map((project) => {
console.log("project", project);
const productionEnvironment = project.environments.find(
(environment) => environment.name === "production",
);