diff --git a/lib/cli/src/version.ts b/lib/cli/src/version.ts index 7bccd866..3ab19cc3 100644 --- a/lib/cli/src/version.ts +++ b/lib/cli/src/version.ts @@ -1,5 +1,5 @@ // latest version of netzo/cli (see https://github.com/netzo/netzo/releases) -export const VERSION = "0.5.33"; +export const VERSION = "0.5.34"; // minimum version of Deno required to run this CLI // (see https://github.com/denoland/deployctl/blob/main/src/version.ts) diff --git a/lib/components/dialog.tsx b/lib/components/dialog.tsx index b3c4f47c..6e4d0cb6 100644 --- a/lib/components/dialog.tsx +++ b/lib/components/dialog.tsx @@ -131,9 +131,9 @@ export { const DialogContentControlled = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { - onClickClosed: () => void; + onClickClose: () => void; } ->(({ className, onClickClosed, children, ...props }, ref) => ( +>(({ className, onClickClose, children, ...props }, ref) => ( -