Skip to content

Commit

Permalink
fix: explore links 404 (#3297)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdougie committed May 1, 2024
1 parent 94e8328 commit ba05a16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const ContributorProfileInfo = ({
</Title>
<div className="flex gap-1.5 flex-wrap">
{interestArray.map((interest, index) => (
<Link href={`/${interest}/dashboard/filter/recent`} key={index} className="rounded-3xl">
<Link href={`/explore/topic/${interest}/dashboard/filter/recent`} key={index} className="rounded-3xl">
<LanguagePill topic={interest} />
</Link>
))}
Expand Down
2 changes: 1 addition & 1 deletion components/shared/AppSidebar/AppSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const AppSideBar = ({ workspaceId, hideSidebar, sidebarCollapsed }: AppSi
/>
<SidebarMenuItem
title="Explore"
url={`/${userInterest}/dashboard/filter/recent`}
url={`/explore/topic/${userInterest}/dashboard/filter/recent`}
icon={<Squares2X2Icon className="w-5 h-5 text-slate-400" />}
/>
<SidebarMenuItem
Expand Down

0 comments on commit ba05a16

Please sign in to comment.