myoperator-mcp 0.2.58 → 0.2.60
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1263,7 +1263,7 @@ const DeleteConfirmationModal = React.forwardRef<
|
|
|
1263
1263
|
<DialogContent ref={ref} size="sm" className={cn(className)}>
|
|
1264
1264
|
<DialogHeader>
|
|
1265
1265
|
<DialogTitle>{title || defaultTitle}</DialogTitle>
|
|
1266
|
-
<DialogDescription className={description ? undefined : "
|
|
1266
|
+
<DialogDescription className={description ? undefined : "sr-only"}>
|
|
1267
1267
|
{description ||
|
|
1268
1268
|
"Delete confirmation dialog - this action cannot be undone"}
|
|
1269
1269
|
</DialogDescription>
|
|
@@ -4212,6 +4212,8 @@ export const reducer = (state: State, action: Action): State => {
|
|
|
4212
4212
|
...state,
|
|
4213
4213
|
toasts: state.toasts.filter((t) => t.id !== action.toastId),
|
|
4214
4214
|
};
|
|
4215
|
+
default:
|
|
4216
|
+
return state;
|
|
4215
4217
|
}
|
|
4216
4218
|
};
|
|
4217
4219
|
|
package/package.json
CHANGED