Next.js Discord

Discord Forum

How can we update Session in next auth?

Unanswered
Pyrrhuloxia posted this in #help-forum
Open in Discord
PyrrhuloxiaOP
Hey everyone I have been trying different methods that i found from Stackoverflow, I want to update session so please help thanks, following is the example that i have tried
const handleUpdateUser = async () => {
console.log("UPDATE SESSION Trigger")
const updateUser = {
...session,
user: {
...session?.user,
theme: "Dark",
},
};

await update(updateUser);

};

1 Reply