diff --git a/apps/OpenSign/src/pages/UserProfile.js b/apps/OpenSign/src/pages/UserProfile.js
index fe27836eb..cbc0d2429 100644
--- a/apps/OpenSign/src/pages/UserProfile.js
+++ b/apps/OpenSign/src/pages/UserProfile.js
@@ -449,7 +449,7 @@ function UserProfile() {
)}
- {!isEnableSubscription && (
+ {isEnableSubscription && (
Public profile :{" "}
diff --git a/apps/OpenSign/src/primitives/GetReportDisplay.js b/apps/OpenSign/src/primitives/GetReportDisplay.js
index a20f72c55..0a04073bf 100644
--- a/apps/OpenSign/src/primitives/GetReportDisplay.js
+++ b/apps/OpenSign/src/primitives/GetReportDisplay.js
@@ -891,7 +891,7 @@ const ReportTable = (props) => {
{props.actions?.length > 0 && (
Action |
)}
- {props.ReportName === "Templates" && !isEnableSubscription && (
+ {props.ReportName === "Templates" && isEnableSubscription && (
Public |
)}
@@ -1333,7 +1333,7 @@ const ReportTable = (props) => {
)}
- {!isEnableSubscription && (
+ {isEnableSubscription && (
{props.ReportName === "Templates" && (
|