Skip to content

Commit 9228654

Browse files
committed
Remove Hacky from QR-Code page
1 parent b0db5ce commit 9228654

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import Image from "next/image";
33
import { redirect } from "next/navigation";
44
import { getServerSession } from "next-auth/next";
55
import { revalidateTag } from "next/cache";
6-
import { hackyPeeking } from "@/assets/images";
76
import UserSignOut from "@/components/UserSignOut";
87
import authOptions from "@/app/api/auth/[...nextauth]/authOptions";
98
import { UserService } from "@/services/UserService";
@@ -52,11 +51,8 @@ export default async function QR() {
5251
<div className="container m-auto h-full">
5352
<div className="h-full flex flex-col justify-center items-center text-center p-4 gap-y-4">
5453
<div className="flex flex-col justify-center items-center">
55-
{!isCompany(user.role) && (
56-
<Image className="w-48" src={hackyPeeking} alt="Hacky Peaking" />
57-
)}
5854
<QRCode
59-
className="w-72 h-auto p-4 border-[14px] bg-white rounded-lg"
55+
className="w-72 h-72 p-4 border-[14px] bg-white rounded-lg"
6056
style={{ borderColor }}
6157
value={userQRCode}
6258
/>

0 commit comments

Comments
 (0)