diff --git a/frontend/src/components/Hottopic.jsx b/frontend/src/components/Hottopic.jsx index 8aab6c1..5d8c20a 100644 --- a/frontend/src/components/Hottopic.jsx +++ b/frontend/src/components/Hottopic.jsx @@ -6,16 +6,16 @@ const Hottopic = ({ topic, dp, bg }) => { <>
-
+
-
+
-
+
{topic}
-
+
diff --git a/frontend/src/pages/Home.jsx b/frontend/src/pages/Home.jsx index a91f2ff..8032e02 100644 --- a/frontend/src/pages/Home.jsx +++ b/frontend/src/pages/Home.jsx @@ -15,8 +15,7 @@ import { setOnNewPost } from '../redux/onNewPost'; import Polls from '../components/Polls'; import { clearOffset, setPollOffset, setPostOffset } from '../redux/offset'; import { addRoomCreatorId, addRoomTitle, setOnNewRoomPost } from '../redux/RoomCreatePosts'; -import SmoothLoader from '../assets/SmoothLoader'; -import { VscFoldDown } from "react-icons/vsc"; + import SmoothLoaderHome, { AnimatedFoldDownArrow } from '../assets/SmoothLoaderHome'; diff --git a/frontend/src/pages/Settings.jsx b/frontend/src/pages/Settings.jsx index f9bce40..30a8a0a 100644 --- a/frontend/src/pages/Settings.jsx +++ b/frontend/src/pages/Settings.jsx @@ -73,7 +73,7 @@ function Settings() { const nav = useNavigate(); const validatePassword = (password) => { - const specialSymbolRegex = /[!@#$%^&*(),.?":{}|<>]/; + const specialSymbolRegex = /[!@#$%^&*(),._?":{}|<>]/; const letterRegex = /[a-zA-Z]/; const numberRegex = /[0-9]/; const minLength = 8;