diff --git a/packages/web/components/templates/homeFeed/PinnedButtons.tsx b/packages/web/components/templates/homeFeed/PinnedButtons.tsx index 981ddefa4..5b62ad40c 100644 --- a/packages/web/components/templates/homeFeed/PinnedButtons.tsx +++ b/packages/web/components/templates/homeFeed/PinnedButtons.tsx @@ -83,23 +83,20 @@ export const PinnedButtons = (props: PinnedButtonsProps): JSX.Element => { } css={{}} - children={ - <> - { - router.push('/settings/pinned-searches') - }} - title="Edit" - /> - { - setHidePinnedSearches(true) - }} - title="Hide" - /> - - } - > + > + { + router.push('/settings/pinned-searches') + }} + title="Edit" + /> + { + setHidePinnedSearches(true) + }} + title="Hide" + /> + ) }