mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-28 01:05:25 +02:00
refactor(organization): migrate to react-hook-form with zod validation
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
interface Props {
|
||||
className?: string;
|
||||
logoUrl?: string;
|
||||
@@ -9,8 +11,7 @@ export const Logo = ({ className = "size-14", logoUrl }: Props) => {
|
||||
<img
|
||||
src={logoUrl}
|
||||
alt="Organization Logo"
|
||||
className={className}
|
||||
style={{ objectFit: "contain" }}
|
||||
className={cn(className, "object-contain rounded-sm")}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user