Skip to content

Commit

Permalink
fix: typo with imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Feb 17, 2024
1 parent df1cc6e commit 8bd7f23
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from "react";
import { IoIosArrowUp } from "react-icons/io";
import "./BacktoTop.scss";
import "./BackToTop.scss";

const BackToTop = () => {
const [isVisible, setIsVisible] = useState(false);
Expand Down
1 change: 0 additions & 1 deletion src/redux/slice/userSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const userSlice = createSlice({
initialState,
reducers: {
updateUserData: (state, action) => {
console.log("🚀 ~ state:", state);
return {
...state,
...action.payload,
Expand Down

0 comments on commit 8bd7f23

Please sign in to comment.