Skip to content

Commit 2a34786

Browse files
committed
Fix some part on communities section
1 parent 753f96e commit 2a34786

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/utils/constants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export const COMMUNITY_NAVBAR_LINKS = [
149149
},
150150
];
151151

152-
export const DISCOVER_PAGE_BUTTONS = [
152+
export const COMMUNITY_PAGE_BUTTONS = [
153153
{
154154
text: "All",
155155
},

app/voyager/communities/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

0 commit comments

Comments
 (0)