feat: add readonly to test pipeline

This commit is contained in:
Zamitto 2025-02-18 22:31:19 -03:00
parent d879f2e3df
commit 58855a93a8

View file

@ -6,7 +6,10 @@ export interface BackdropProps {
children: React.ReactNode;
}
export function Backdrop({ isClosing = false, children }: BackdropProps) {
export function Backdrop({
isClosing = false,
children,
}: Readonly<BackdropProps>) {
return (
<div
className={cn("backdrop", {