Skip to content

Commit

Permalink
Fix some part on communities section
Browse files Browse the repository at this point in the history
  • Loading branch information
chauhanshilpa committed May 17, 2024
1 parent 753f96e commit 2a34786
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/utils/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const COMMUNITY_NAVBAR_LINKS = [
},
];

export const DISCOVER_PAGE_BUTTONS = [
export const COMMUNITY_PAGE_BUTTONS = [
{
text: "All",
},
Expand Down
4 changes: 2 additions & 2 deletions app/voyager/communities/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import CommunitiesNavbar from "../../components/communities_components/CommunitiesNavbar";
import { v4 as uuidv4 } from "uuid";
import { DISCOVER_PAGE_BUTTONS } from "../../utils/constants";
import { COMMUNITY_PAGE_BUTTONS } from "../../utils/constants";
import Image from "next/image";
import VivrantCommunitiesCard from "../../components/communities_components/VivrantCommunitiesCard";
import Footer from "@/app/components/reusable/Footer";
Expand All @@ -16,7 +16,7 @@ const Community = () => {
Discover New Connections
</div>
<div className="flex flex-wrap gap-3">
{DISCOVER_PAGE_BUTTONS.map((data) => (
{COMMUNITY_PAGE_BUTTONS.map((data) => (
<button
key={uuidv4()}
className="bg-[#EAECF0] font-semibold py-2 px-4 rounded hover:shadow-md"
Expand Down

0 comments on commit 2a34786

Please sign in to comment.