Skip to content

Commit

Permalink
fix: search-input alt item not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshift committed Dec 2, 2024
1 parent 7aa8d1d commit 495469d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/pages/pillar-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const PillarPage = async ({ params }: Props) => {

const { mainPillar, altPillar, title, description } = pillarInfo;
const { mainItems, altItems } = createPillarItems(nav, pillarInfo, params);
const inputItems = getInputItems(nav, pillarInfo, params.item);
const inputItems = getInputItems(nav, pillarInfo, params.item, params.item2);

return (
<div className="flex flex-col gap-4">
Expand Down

0 comments on commit 495469d

Please sign in to comment.