Commit 0252539b by Arjun Jhukal

fixed the lining git push

parent 4fa5b736
"use client";
import { useEffect } from "react";
import { useAppDispatch } from "@/hooks/hook";
import { setTokens } from "@/slice/authSlice";
export default function ReduxHydrator({ token }: { token: string; }) {
const dispatch = useAppDispatch();
// useEffect(() => {
// dispatch(setTokens({ access_token: token, user }));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment