Updated End of Line Sequence to CRLF for Every File

This commit is contained in:
Ahmad 2024-05-31 23:48:12 -04:00
parent 20ba589842
commit 883ec53338
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
2 changed files with 3 additions and 2 deletions

View file

@ -4,5 +4,6 @@
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": true,
"plugins": ["prettier-plugin-tailwindcss"]
"plugins": ["prettier-plugin-tailwindcss"],
"endOfLine": "crlf"
}

View file

@ -21,7 +21,7 @@ const SheetOverlay = React.forwardRef<
>(({ className, ...props }, ref) => (
<SheetPrimitive.Overlay
className={cn(
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
className
)}
{...props}