@local-civics/mgmt-ui 0.1.148 → 0.1.150

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.
package/dist/index.js CHANGED
@@ -1051,10 +1051,10 @@ function Table$b(props) {
1051
1051
  );
1052
1052
  }
1053
1053
  const openDeleteModal = (student) => modals.openConfirmModal({
1054
- title: `Delete "${student.givenName && student.familyName ? `${student.givenName} ${student.familyName}` : student.email}"?`,
1054
+ title: `Remove "${student.givenName && student.familyName ? `${student.givenName} ${student.familyName}` : student.email}" from this class?`,
1055
1055
  centered: true,
1056
- children: /* @__PURE__ */ React__namespace.createElement(core.Text, { size: "sm" }, "Are you sure you want to delete this person? This action is destructive and you will have to contact support to restore your data."),
1057
- labels: { confirm: "Delete", cancel: "No don't delete them" },
1056
+ children: /* @__PURE__ */ React__namespace.createElement(core.Text, { size: "sm" }, "Click confirm if you want to remove the student from this specific class. This will NOT remove the student from the Tech Platform."),
1057
+ labels: { confirm: "Remove Student", cancel: "Cancel" },
1058
1058
  confirmProps: { color: "red" },
1059
1059
  onConfirm: () => props.onDelete && props.onDelete(student)
1060
1060
  });
@@ -2259,10 +2259,10 @@ function Table$3(props) {
2259
2259
  );
2260
2260
  }
2261
2261
  const openDeleteModal = (student) => modals.openConfirmModal({
2262
- title: `Delete "${student.givenName && student.familyName ? `${student.givenName} ${student.familyName}` : student.email}"?`,
2262
+ title: `Remove "${student.givenName && student.familyName ? `${student.givenName} ${student.familyName}` : student.email}" from this class?`,
2263
2263
  centered: true,
2264
- children: /* @__PURE__ */ React__namespace.createElement(core.Text, { size: "sm" }, "Are you sure you want to delete this person? This action is destructive and you will have to contact support to restore your data."),
2265
- labels: { confirm: "Delete", cancel: "No don't delete them" },
2264
+ children: /* @__PURE__ */ React__namespace.createElement(core.Text, { size: "sm" }, "Click confirm if you want to remove the student from this specific class. This will NOT remove the student from the Tech Platform."),
2265
+ labels: { confirm: "Remove Student", cancel: "Cancel" },
2266
2266
  confirmProps: { color: "red" },
2267
2267
  onConfirm: () => props.onDelete && props.onDelete(student)
2268
2268
  });