Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkiriungi committed Jan 17, 2024
1 parent ea8026e commit daf755f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/src/scenes/navbar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const Navbar = () => {
const primaryLight = theme.palette.primary.light;
const alt = theme.palette.background.alt;

// const fullName = `${user.firstName} ${user.lastName}`;
const fullName = "Xander Max";
const fullName = `${user.firstName} ${user.lastName}`;
// const fullName = "Xander Max";

return (
<FlexBetween padding="1rem 6%" backgroundColor={alt}>
Expand Down
2 changes: 1 addition & 1 deletion client/src/scenes/widgets/FriendListWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const FriendListWidget = ({ userId }) => {

useEffect(() => {
getFriends();
}, [])
});
return (
<WidgetWrapper>
<Typography
Expand Down
2 changes: 1 addition & 1 deletion client/src/scenes/widgets/PostsWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const PostsWidget = ({ userId, isProfile = false }) => {
} else {
getPosts();
}
}, []);
});
return (
<>
{posts.map(
Expand Down

0 comments on commit daf755f

Please sign in to comment.