We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, In Sidebar.js I am getting a error that is caused by useEffect.
In these lines:
useEffect(async () => { try { const response = await fetch( ${process.env.NEXT_PUBLIC_API_URL}/getchannels, ) const data = await response.json() setChannels(data) router.push(?channel=${data[0].roomId}&name=${data[0].roomName}) } catch (error) { console.error(error) } }, [])
${process.env.NEXT_PUBLIC_API_URL}/getchannels
?channel=${data[0].roomId}&name=${data[0].roomName}
@CleverProgrammer @kevikodes
I'm all up to date. Still I am facing this issue.
Anyone please help me!
Thank You.
The text was updated successfully, but these errors were encountered:
Read this https://stackoverflow.com/questions/72306420/typeerror-destroy-is-not-a-function-nextjs
Sorry, something went wrong.
No branches or pull requests
Hello,
In Sidebar.js I am getting a error that is caused by useEffect.
In these lines:
useEffect(async () => {
try {
const response = await fetch(
${process.env.NEXT_PUBLIC_API_URL}/getchannels
,)
const data = await response.json()
setChannels(data)
router.push(
?channel=${data[0].roomId}&name=${data[0].roomName}
)} catch (error) {
console.error(error)
}
}, [])
@CleverProgrammer @kevikodes

I'm all up to date. Still I am facing this issue.
Anyone please help me!
Thank You.
The text was updated successfully, but these errors were encountered: