@onehat/ui 0.3.157 → 0.3.159

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.157",
3
+ "version": "0.3.159",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -157,7 +157,7 @@ export default function withAlert(WrappedComponent) {
157
157
  onPress={onNo}
158
158
  color="trueGray.800"
159
159
  variant="ghost"
160
- colorScheme="neutral"
160
+ // colorScheme="neutral"
161
161
  mr={2}
162
162
  >No</Button>);
163
163
  buttons.push(<Button
@@ -185,7 +185,7 @@ function AttachmentsElement(props) {
185
185
  },
186
186
  onFileDelete = (id) => {
187
187
  if (confirmBeforeDelete) {
188
- confirm('Are you sure you want to delete?', () => doDelete(id));
188
+ confirm('Are you sure you want to delete the file?', () => doDelete(id));
189
189
  } else {
190
190
  doDelete(id);
191
191
  }