@@ -21,7 +21,6 @@ import UserSignOut from "@/components/UserSignOut";
2121import { SPIN_WHEEL_MAXIMUM } from "@/constants" ;
2222import { EventService } from "@/services/EventService" ;
2323import { FileUser , Users } from "lucide-react" ;
24- import MessageCard from "@/components/MessageCard" ;
2524
2625const N_SESSION_TILES = 3 ;
2726const N_COMPANY_TILES = 15 ;
@@ -80,8 +79,6 @@ export default async function Home() {
8079 user . company [ 0 ] . company ,
8180 ) ) ;
8281
83- console . log ( "Download CVs Links" , downloadCVsLinks ) ;
84-
8582 return (
8683 < div className = "container mx-auto" >
8784 { /* Spin the Wheel Section */ }
@@ -108,7 +105,6 @@ export default async function Home() {
108105 { /* Download CVs section */ }
109106 { downloadCVsLinks && (
110107 < List title = "Download CVs" >
111- < MessageCard type = "info" content = "CVs will be available after 5pm" />
112108 { downloadCVsLinks . all && (
113109 < Link
114110 className = "button-primary text-sm"
@@ -119,10 +115,10 @@ export default async function Home() {
119115 Download all
120116 </ Link >
121117 ) }
122- { downloadCVsLinks . all && (
118+ { downloadCVsLinks . companyConnections && (
123119 < Link
124120 className = "button-tertiary text-sm"
125- href = { downloadCVsLinks . all }
121+ href = { downloadCVsLinks . companyConnections }
126122 download
127123 >
128124 < Users size = { 16 } />
0 commit comments