Conversation
Signed-off-by: Mase <snoopythe3fans@hotmail.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
We shouldnt start developing until everyone is ready |
|
Im gonna make a subfolder for nextjs |
|
subfolder is called |
|
|
|
No code quality. We need it.
…On Wed, 26 Nov 2025, 20:13 github-code-quality[bot], < ***@***.***> wrote:
***@***.***[bot]* commented on this pull request.
------------------------------
In next-switch/src/app/components/Header.jsx
<#192 (comment)>
:
> @@ -0,0 +1,66 @@
+"use client";
+
+import { useEffect, useState } from "react";
+import Image from "next/image";
+import Link from "next/link";
+import { useTranslation } from "react-i18next";
+import TSC from "../../public/tsc.png"; // move your asset to public for Next.js
+
+export default function Header() {
+ const { t, i18n } = useTranslation();
Unused variable, import, function or class
Unused variable i18n.
------------------------------
To fix the problem, simply remove the unused variable i18n from the
destructuring assignment on line 10. This means changing:
const { t, i18n } = useTranslation();
to:
const { t } = useTranslation();
No other lines need to be changed, as i18n is not referenced elsewhere in
the snippet. This is a safe change and does not affect any functionality.
—
Reply to this email directly, view it on GitHub
<#192 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BPVIK24T4ZPHEGI7IAQPCCD36YCXNAVCNFSM6AAAAACMPKG63CVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTKMJSGYYTIOBZGY>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Add new commits to NextJS
❌ Deploy Preview for thescratchchannelmirror failed.
|
Revert cos of errors
|
Oh ye. I forgot to say that i set up a netlify site. Its not working rn but
im working on fixing it.
|
kRxZykRxZy
left a comment
There was a problem hiding this comment.
Doesn't NextJS 16.0.10 have security issues, I read an email to me by vercel recently saying that.
|
16.0.10 is the one that fixed them |
To see the plan, coderabbit made it in #191