diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx
index fda8cd9d07c54b53cc1bfe1e54e3f22a6e77d92d..8fbb71363564d74ae2aca878c079e9f288d5de6a 100644
--- a/daily-thought-frontend/src/pages/feed.tsx
+++ b/daily-thought-frontend/src/pages/feed.tsx
@@ -5,16 +5,18 @@ const Feed = () => {
 
   let colors = ["#ffd0d2","#fffdd0","#d0fffd","#d0d2ff"];
 
+  let user = {FirstName: "John", LastName: "Smith", Username: "JohnSmith", Avatar: null, Colors: [colors[0], colors[1]]}
+
   return (
     <div>
           <Post 
-          User={{FirstName: "John", LastName: "Smith", Username: "JohnSmith", Avatar: null, Colors: [colors[0], colors[1]]}} 
+          User={user} 
           Likes={[]}
           Post="This is my amazing post"
           TimeStamp='Just now'
         />
 
-        <HiddenPost UserColors={colors}/>
+        <HiddenPost User={user} TimeStamp="Just now"/>
     </div>
   )
 }