79460608

Date: 2025-02-23 02:49:49
Score: 5
Natty: 4
Report link

I have same issue. Need to pass context in {children} and my context is also in CamelCase but no luck still undefined,

 return (
    <GoogleOAuthProvider clientId={clientID}>
      <ProfileContext.Provider value={Profile}>
        <html lang="en">
          <body className={`${Font.variable}`}>
            <Navbar />
            {children}
            <Footer />
            <ProgressBar />
            <button className={`scrollToTopButton ${isVisible ? "visible" : ""}`} onClick={scrollToTop}>
              <FontAwesomeIcon icon={faAngleUp} style={{ width: "22px", height: "32px" }} />
            </button>
          </body>
        </html>
      </ProfileContext.Provider>
    </GoogleOAuthProvider>
  )
}

"use client"
// import Form from "next/form "
import { useState, useEffect, useContext } from "react"
import Button from "../Components/Button"
import ProfileContext from "../layout"
export default function Contact() {
  const [name, setName] = useState()
  const [email, setEmail] = useState()
  const [message, setMessage] = useState()
  const [mobile, setMobile] = useState()
  const [service, setService] = useState()
  const [isSubmitted, setiSSubmitted] = useState(false)
  const [isLoading, setIsLoading] = useState(false)
  const value = useContext(ProfileContext)
  async function HandleSubmit(e) {
    setIsLoading(true)
    e.preventDefault()
    let body = {
      cred: process.env.NEXT_PUBLIC_CRED,
      email: email,
      mobile: mobile,
      when: new Date().toLocaleDateString(),
      message: message,
      name: name,
      service: service,
    }
    let res = await fetch("/api/contact", {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
      },
      body: JSON.stringify(body),
    }).then(function (response) {
      console.info(response)
      setIsLoading(false)
      setiSSubmitted(true)
    })
  }
  console.log(value)

Importing context in another component gives undefined. I don't need to switch to app router, any other solution you guys found ?

Reasons:
  • Blacklisted phrase (1): no luck
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AKSHAY BHOPANI