Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/ts/components/modals/EditProfileModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export function EditProfile() {
bio: value.bio,
keyboard: value.keyboard,
socialProfiles: {
twitter: value.twitter || undefined,
github: value.github || undefined,
website: value.website || undefined,
twitter: value.twitter,
github: value.github,
website: value.website,
},
showActivityOnPublicProfile: value.showActivityOnPublicProfile,
};
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/ts/elements/merch-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ export function showIfNotClosedBefore(): void {
icon: "fas fa-fw fa-shopping-bag",
customContent: (
<>
New merch store now open, including a limited edition metal keycap!{" "}
Check out our merch store!{" "}
<a target="_blank" rel="noopener" href="https://mktp.co/merch">
monkeytype.store
</a>
</>
),
imagePath: "/images/merch3.png",
imagePath: "/images/merch2.png",
onClose: () => {
closed.set(true);
},
Expand Down
Loading
Loading