diff --git a/public-frontend/src/App.tsx b/public-frontend/src/App.tsx index 764db53..18d09ea 100644 --- a/public-frontend/src/App.tsx +++ b/public-frontend/src/App.tsx @@ -78,7 +78,6 @@ export default function App() { setView({ name: "product", id })} onContribute={() => setView({ name: "contribute" })} - onApi={() => setView({ name: "api" })} /> )} {view.name === "product" && ( diff --git a/public-frontend/src/components/Home.tsx b/public-frontend/src/components/Home.tsx index 3647a26..efedc05 100644 --- a/public-frontend/src/components/Home.tsx +++ b/public-frontend/src/components/Home.tsx @@ -26,11 +26,9 @@ const FEATURES = [ export default function Home({ onOpen, onContribute, - onApi, }: { onOpen: (id: string) => void; onContribute: () => void; - onApi: () => void; }) { const [q, setQ] = useState(""); const [items, setItems] = useState([]); @@ -99,13 +97,6 @@ export default function Home({ ))} - -