This commit is contained in:
VividTruthKeeper 2022-09-10 14:50:07 +05:00
parent 53af65a61e
commit 1571692b74
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
border: 0.1rem solid #c8c8c8;
&.active {
height: 16.3rem;
height: 14.7rem;
opacity: 1;
@include transition-std;
}

View File

@ -10,5 +10,5 @@ export const getPosts = (setPosts: React.Dispatch<PostType[]>) => {
.then((res) => {
setPosts(res.data);
})
.catch();
.catch((err) => {});
};