Skip to content

Commit

Permalink
fix: changed dummy data name
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhkunwar11 committed Jan 17, 2022
1 parent 97c9b72 commit 3eceeb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/admin/events/[event_id]/attendees.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import SiteHeader from "../../../../component/layout/SiteHeader/SiteHeader";

const followers = [
const attendees = [
{
name: "Liam Olivia Anna",
image: "/images/pic1.png"
Expand Down Expand Up @@ -55,7 +55,7 @@ const EventAttendies = () => {
<div className="max-w-panel mx-auto lg:px-0 md:px-6 sm:px-3 mt-3.5 ">
<h1 className="text-center">Event Attendies</h1>
<div className="mt-4 max-w-sm mx-auto">
{followers?.map((data) => (
{attendees?.map((data) => (
<div
className="flex items-center py-2 md:px-16"
key={data.name + data.image}
Expand Down

0 comments on commit 3eceeb8

Please sign in to comment.