We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be4ab82 commit ef07862Copy full SHA for ef07862
client/src/components/navigation/ProfileDropdown.js
@@ -17,7 +17,15 @@ const ProfileDropdown = () => {
17
window.location.href = link;
18
};
19
20
- const options = [{ onClick: handleSignOut, label: "Sign Out" }];
+ const options = [
21
+ {
22
+ onClick: () => {
23
+ alert("This feature is in progress.");
24
+ },
25
+ label: "User Profile",
26
27
+ { onClick: handleSignOut, label: "Sign Out" },
28
+ ];
29
30
return (
31
<Wrapper>
client/src/components/posts/refactorComponents/PostWrapper.js
@@ -234,9 +234,9 @@ const PostWrapper = ({
234
export default PostWrapper;
235
236
const Wrapper = styled.div`
237
- margin: 2em;
+ margin: 2em 0;
238
padding: 0.5em;
239
- width: 100%px;
+ width: 100%;
240
/* max-width: 900px; */
241
/* min-height: 255px; */
242
/* height: 255px; */
0 commit comments