Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
0.5.34
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed May 19, 2024
1 parent c077cd7 commit 005cff5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 3 additions & 3 deletions lib/components/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ export {
const DialogContentControlled = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & {
onClickClosed: () => void;
onClickClose: () => void;
}
>(({ className, onClickClosed, children, ...props }, ref) => (
>(({ className, onClickClose, children, ...props }, ref) => (
<DialogPortal>
<DialogOverlay />
<DialogPrimitive.Content
Expand All @@ -149,7 +149,7 @@ const DialogContentControlled = React.forwardRef<
asChild
className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none bg-transparent data-[state=open]:bg-accent data-[state=open]:text-muted-foreground"
>
<Button variant="ghost" size="icon" onClick={onClickClosed}>
<Button variant="ghost" size="icon" onClick={onClickClose}>
<i className="mdi-close h-4 w-4" />
<span className="sr-only">Close</span>
</Button>
Expand Down

0 comments on commit 005cff5

Please sign in to comment.