Skip to content

Commit 8818eeb

Browse files
committed
Remove temporary message
1 parent 448157c commit 8818eeb

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/app/(authenticated)/home/page.tsx

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import UserSignOut from "@/components/UserSignOut";
2121
import { SPIN_WHEEL_MAXIMUM } from "@/constants";
2222
import { EventService } from "@/services/EventService";
2323
import { FileUser, Users } from "lucide-react";
24-
import MessageCard from "@/components/MessageCard";
2524

2625
const N_SESSION_TILES = 3;
2726
const 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

Comments
 (0)