@@ -21,7 +21,6 @@ import UserSignOut from "@/components/UserSignOut";
21
21
import { SPIN_WHEEL_MAXIMUM } from "@/constants" ;
22
22
import { EventService } from "@/services/EventService" ;
23
23
import { FileUser , Users } from "lucide-react" ;
24
- import MessageCard from "@/components/MessageCard" ;
25
24
26
25
const N_SESSION_TILES = 3 ;
27
26
const N_COMPANY_TILES = 15 ;
@@ -80,8 +79,6 @@ export default async function Home() {
80
79
user . company [ 0 ] . company ,
81
80
) ) ;
82
81
83
- console . log ( "Download CVs Links" , downloadCVsLinks ) ;
84
-
85
82
return (
86
83
< div className = "container mx-auto" >
87
84
{ /* Spin the Wheel Section */ }
@@ -108,7 +105,6 @@ export default async function Home() {
108
105
{ /* Download CVs section */ }
109
106
{ downloadCVsLinks && (
110
107
< List title = "Download CVs" >
111
- < MessageCard type = "info" content = "CVs will be available after 5pm" />
112
108
{ downloadCVsLinks . all && (
113
109
< Link
114
110
className = "button-primary text-sm"
@@ -119,10 +115,10 @@ export default async function Home() {
119
115
Download all
120
116
</ Link >
121
117
) }
122
- { downloadCVsLinks . all && (
118
+ { downloadCVsLinks . companyConnections && (
123
119
< Link
124
120
className = "button-tertiary text-sm"
125
- href = { downloadCVsLinks . all }
121
+ href = { downloadCVsLinks . companyConnections }
126
122
download
127
123
>
128
124
< Users size = { 16 } />
0 commit comments