@paro.io/expert-shared-components 1.13.9 → 1.13.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -24,7 +24,7 @@ const getSuspensionDuration = (label) => {
|
|
|
24
24
|
return "Permanent";
|
|
25
25
|
case "Low":
|
|
26
26
|
default:
|
|
27
|
-
return "
|
|
27
|
+
return "No suspension";
|
|
28
28
|
}
|
|
29
29
|
};
|
|
30
30
|
const AccountSuspensionBanner = ({ setShowSuspensionModal, escalationDisputeStatistics, }) => {
|
|
@@ -42,7 +42,7 @@ const AccountSuspensionBanner = ({ setShowSuspensionModal, escalationDisputeStat
|
|
|
42
42
|
react_1.default.createElement("div", { className: "flex-1" },
|
|
43
43
|
react_1.default.createElement("h3", { className: "text-lg font-bold text-white" }, "\uD83D\uDEAB Account Suspended due to: Engagement Issues"),
|
|
44
44
|
react_1.default.createElement("p", { className: "text-red-100 text-sm mt-1" },
|
|
45
|
-
"Your account has been suspended due to
|
|
45
|
+
"Your account has been suspended due to engagement issues. If you have any problems with the suspension, please go to the Engagement Support section to respond to your issues or reach out to",
|
|
46
46
|
' ',
|
|
47
47
|
react_1.default.createElement("a", { href: "mailto:expertsupport@paro.io", className: "underline text-white hover:text-red-200 cursor-pointer" }, "expertsupport@paro.io"),
|
|
48
48
|
"."),
|
|
@@ -220,7 +220,7 @@ const EscalationSubmitForm = ({ goBack, goHome, expertsOrClients, projects, docu
|
|
|
220
220
|
react_1.default.createElement("h2", { className: "text-xl font-bold" },
|
|
221
221
|
"Report Issue with Your ",
|
|
222
222
|
isExpert ? 'Client' : 'Expert'),
|
|
223
|
-
react_1.default.createElement("p", { className: "text-gray-600 mt-1" }, isExpert ? (`Provide details about the issue you're experiencing and we'll resolve it within 4-8 hours
|
|
223
|
+
react_1.default.createElement("p", { className: "text-gray-600 mt-1" }, isExpert ? (`Provide details about the issue you're experiencing and we'll resolve it within 4-8 hours`) : (react_1.default.createElement(react_1.default.Fragment, null,
|
|
224
224
|
"Report communication problems, quality concerns, or missed deadlines. All issues right now will be submitted to the Expert and Paro. If you want to submit issues directly to Paro please email",
|
|
225
225
|
' ',
|
|
226
226
|
react_1.default.createElement("a", { href: "mailto:clientsupport@paro.io", className: "underline text-white hover:text-red-200 cursor-pointer" }, "clientsupport@paro.io"),
|
|
@@ -191,7 +191,7 @@ const NetworkSection = ({ handleScrollToBottom, preferenceTasks, isWhiteLabel, d
|
|
|
191
191
|
react_1.default.createElement("li", null,
|
|
192
192
|
leftSideStatus,
|
|
193
193
|
" ",
|
|
194
|
-
suspensionLevel !== "Low" && react_1.default.createElement(core_1.IconButton, { onClick: () => { setShowPriorityLevelModal(true); } },
|
|
194
|
+
suspensionLevel !== "Low" && react_1.default.createElement(core_1.IconButton, { "aria-label": "Show priority levels", onClick: () => { setShowPriorityLevelModal(true); } },
|
|
195
195
|
react_1.default.createElement(base_icons_1.IconInfoCircle, { size: "sm", className: "block text-right" }))),
|
|
196
196
|
react_1.default.createElement("li", null, rightSideStatus)))),
|
|
197
197
|
openModal &&
|