Skip to content
Snippets Groups Projects
Commit b69419fb authored by Chloé JACOB's avatar Chloé JACOB :alien:
Browse files

quelques modifications

parent 83f71586
No related merge requests found
......@@ -33,7 +33,7 @@ const AddComment = ({ idPost }: commentProps) => {
setComment('');
}
}}
className="border border-gray-400 p-2 rounded-md w-full"
className="border border-gray-400 dark:bg-darkblue p-2 rounded-md w-full"
placeholder={t('addcomment_view.add_comment')}
></input>
<button
......
......@@ -49,7 +49,7 @@ return <>
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-5">
{feedItems &&
feedItems.map((post: Instalike.Post) => {
console.log(post)
//console.log(post)
return (
<Link key={post.id} to={`/post/${post.id}`} className="flex justify-center">
......
......@@ -73,7 +73,7 @@ return <>
<div className="flex flex-col gap-10 mt-10">
{/* POSTS */}
{feedItems.map((post: Instalike.Post) => {
console.log(post)
//console.log(post)
return (
<Post post={post} key={post.id}
......
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