Skip to content

Commit aeead23

Browse files
fix: change public profile url
1 parent 83fe889 commit aeead23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/OpenSign/src/pages/UserProfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ function UserProfile() {
460460
/>
461461
</span>
462462
<div className="flex items-center">
463-
<span>opensign.me/</span>
463+
<span>opensign-me.vercel.app/</span>
464464
{editmode ? (
465465
<input
466466
onChange={handleOnchangeUserName}

apps/OpenSign/src/primitives/GetReportDisplay.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ const ReportTable = (props) => {
803803

804804
//function to copy public profile links
805805
const copytoProfileLink = () => {
806-
const url = `https://opensign.me/${publicUserName}`;
806+
const url = `https://opensign-me.vercel.app/${publicUserName}`;
807807
copytoData(url);
808808
setIsAlert(true);
809809
setAlertMsg({

0 commit comments

Comments
 (0)