mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix(frontend): marketplace breadcrumbs typo (#11315)
## Changes 🏗️ Fixing a ✍🏽 typo found by @Pwuts ## Checklist 📋 ### For code changes: - [x] I have clearly listed my changes in the PR description - [x] I have made a test plan - [x] I have tested my changes according to the test plan: - [x] Run the app - [x] No typos on the breadcrumbs
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
"use client";
|
||||
import { Breadcrumbs } from "@/components/molecules/Breadcrumbs/Breadcrumbs";
|
||||
import { useMainAgentPage } from "./useMainAgentPage";
|
||||
import { MarketplaceAgentPageParams } from "../../agent/[creator]/[slug]/page";
|
||||
import { Separator } from "@/components/__legacy__/ui/separator";
|
||||
import { Breadcrumbs } from "@/components/molecules/Breadcrumbs/Breadcrumbs";
|
||||
import { ErrorCard } from "@/components/molecules/ErrorCard/ErrorCard";
|
||||
import { MarketplaceAgentPageParams } from "../../agent/[creator]/[slug]/page";
|
||||
import { AgentImages } from "../AgentImages/AgentImage";
|
||||
import { AgentInfo } from "../AgentInfo/AgentInfo";
|
||||
import { AgentPageLoading } from "../AgentPageLoading";
|
||||
import { AgentsSection } from "../AgentsSection/AgentsSection";
|
||||
import { BecomeACreator } from "../BecomeACreator/BecomeACreator";
|
||||
import { AgentPageLoading } from "../AgentPageLoading";
|
||||
import { ErrorCard } from "@/components/molecules/ErrorCard/ErrorCard";
|
||||
import { AgentInfo } from "../AgentInfo/AgentInfo";
|
||||
import { AgentImages } from "../AgentImages/AgentImage";
|
||||
import { useMainAgentPage } from "./useMainAgentPage";
|
||||
|
||||
type MainAgentPageProps = {
|
||||
params: MarketplaceAgentPageParams;
|
||||
@@ -65,7 +65,7 @@ export const MainAgentPage = ({ params }: MainAgentPageProps) => {
|
||||
}
|
||||
|
||||
const breadcrumbs = [
|
||||
{ name: "Markertplace", link: "/marketplace" },
|
||||
{ name: "Marketplace", link: "/marketplace" },
|
||||
{
|
||||
name: agent.creator,
|
||||
link: `/marketplace/creator/${encodeURIComponent(agent.creator)}`,
|
||||
|
||||
Reference in New Issue
Block a user