Skip to content

Commit de88e30

Browse files
committed
minor fixes
1 parent 8e39c90 commit de88e30

6 files changed

Lines changed: 5 additions & 6 deletions

File tree

bun.lock

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/(app)/ask/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const AskPage = () => {
2323
toast.success("Verification successful", {
2424
description: "You can now ask a question",
2525
});
26-
console.log("Turnstile token:", token);
2726
}}
2827
theme="light"
2928
size="normal"

src/app/_components/Chat.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ const Chat = () => {
8282
// localStorage.removeItem("chatQuery"); // Clear to avoid reuse
8383
// }
8484
// }, []);
85-
console.log(process.env.NEXT_PUBLIC_TYPEGPT_API_KEY);
8685

8786
// const handleSendMessage = async () => {
8887
// const response = await axios.post(

src/app/_components/dashboard-image.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import Image from "next/image";
2-
32
export const DashboardImage = () => {
43
return (
54
<>

src/app/_components/hero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ export default function Hero() {
3939
<DashboardImage />
4040
<div className="drop-shadow-accent-primary to-primary absolute top-[35rem] left-1/2 z-[-1] h-40 w-[24rem] -translate-x-1/2 rounded-full border bg-gradient-to-br from-pink-700 blur-[4em] drop-shadow-2xl"></div>
4141

42-
<div className="from-primary/30 drop-shadow-primary relative z-[2] flex h-40 w-[24rem] translate-y-20 items-center justify-center rounded-full border-4 border-pink-300/20 bg-gradient-to-br text-5xl font-bold drop-shadow-2xl backdrop-blur-xl">
42+
{/* <div className="from-primary/30 drop-shadow-primary relative z-[2] flex h-40 w-[24rem] translate-y-20 items-center justify-center rounded-full border-4 border-pink-300/20 bg-gradient-to-br text-5xl font-bold drop-shadow-2xl backdrop-blur-xl">
4343
T3 Chat
4444
<div className="drop-shadow-accent-primary absolute top-[0rem] left-1/2 z-[-1] h-40 w-[10rem] -translate-x-1/2 rounded-full border bg-gradient-to-br from-pink-700 to-pink-500 blur-[4em] drop-shadow-2xl"></div>
45-
</div>
45+
</div> */}
4646
</div>
4747
);
4848
}

src/app/api/checkout-sessions/create/route.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export async function POST(req: NextRequest) {
3636
);
3737
}
3838

39-
console.log(env.STRIPE_SECRET_KEY)
4039
try {
4140
const session = await auth();
4241
if (!session?.user?.id) {

0 commit comments

Comments
 (0)