-
Notifications
You must be signed in to change notification settings - Fork 1
Implemented some improvements #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
92ff87e
95987a8
dfe8c1d
344119e
5ad0d4f
4d2fa9f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| pnpm pre-commit | ||
| git add . | ||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,6 +1,5 @@ | ||||||||
| export default { | ||||||||
| plugins: { | ||||||||
| tailwindcss: {}, | ||||||||
| autoprefixer: {} | ||||||||
| '@tailwindcss/postcss': {} | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify the Tailwind CSS package and version. The package Restore the original configuration: - '@tailwindcss/postcss': {}
+ 'tailwindcss': {},
+ 'autoprefixer': {}🌐 Web query: 💡 Result: The latest version of Tailwind CSS is v4.0.7, released on February 18, 2025[6]. This follows the major v4.0 release in January 2025, which introduced significant architectural changes including:
Key improvements in subsequent patches (v4.0.1–v4.0.7) include:
Developers can install it via npm with Citations:
Correct the Tailwind CSS PostCSS plugin configuration. Tailwind CSS v4 is available (v4.0.7 released in February 2025), but the change to use
📝 Committable suggestion
Suggested change
|
||||||||
| } | ||||||||
| } | ||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,7 +1,82 @@ | ||||||||||||||
| /* @import "tailwindcss"; */ | ||||||||||||||
| @tailwind base; | ||||||||||||||
| @tailwind components; | ||||||||||||||
| @tailwind utilities; | ||||||||||||||
| @import 'tailwindcss'; | ||||||||||||||
|
|
||||||||||||||
| @plugin 'tailwindcss-animate'; | ||||||||||||||
|
|
||||||||||||||
| @source '../../../**/*.{ts,tsx,js,jsx,html,css}'; | ||||||||||||||
|
|
||||||||||||||
| @custom-variant dark (&:is(.dark *)); | ||||||||||||||
|
|
||||||||||||||
| @theme { | ||||||||||||||
| --color-border: hsl(var(--border)); | ||||||||||||||
| --color-input: hsl(var(--input)); | ||||||||||||||
| --color-ring: hsl(var(--ring)); | ||||||||||||||
| --color-background: hsl(var(--background)); | ||||||||||||||
| --color-foreground: hsl(var(--foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-primary: hsl(var(--primary)); | ||||||||||||||
| --color-primary-foreground: hsl(var(--primary-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-secondary: hsl(var(--secondary)); | ||||||||||||||
| --color-secondary-foreground: hsl(var(--secondary-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-destructive: hsl(var(--destructive)); | ||||||||||||||
| --color-destructive-foreground: hsl(var(--destructive-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-muted: hsl(var(--muted)); | ||||||||||||||
| --color-muted-foreground: hsl(var(--muted-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-accent: hsl(var(--accent)); | ||||||||||||||
| --color-accent-foreground: hsl(var(--accent-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-popover: hsl(var(--popover)); | ||||||||||||||
| --color-popover-foreground: hsl(var(--popover-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-card: hsl(var(--card)); | ||||||||||||||
| --color-card-foreground: hsl(var(--card-foreground)); | ||||||||||||||
|
|
||||||||||||||
| --color-sidebar: hsl(var(--sidebar-background)); | ||||||||||||||
| --color-sidebar-foreground: hsl(var(--sidebar-foreground)); | ||||||||||||||
| --color-sidebar-primary: hsl(var(--sidebar-primary)); | ||||||||||||||
| --color-sidebar-primary-foreground: hsl(var(--sidebar-primary-foreground)); | ||||||||||||||
| --color-sidebar-accent: hsl(var(--sidebar-accent)); | ||||||||||||||
| --color-sidebar-accent-foreground: hsl(var(--sidebar-accent-foreground)); | ||||||||||||||
| --color-sidebar-border: hsl(var(--sidebar-border)); | ||||||||||||||
| --color-sidebar-ring: hsl(var(--sidebar-ring)); | ||||||||||||||
|
|
||||||||||||||
| --radius-lg: `var(--radius) `; | ||||||||||||||
| --radius-md: `calc(var(--radius) - 2px) `; | ||||||||||||||
| --radius-sm: calc(var(--radius) - 4px); | ||||||||||||||
|
Comment on lines
+46
to
+48
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Removal of Unintended Backticks in CSS Custom Properties. It is recommended to remove the backticks so that the properties are defined as: - --radius-lg: `var(--radius) `;
- --radius-md: `calc(var(--radius) - 2px) `;
+ --radius-lg: var(--radius);
+ --radius-md: calc(var(--radius) - 2px);This change will ensure that the custom properties are parsed correctly by browsers. 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Biome (1.9.4)[error] 46-46: unexpected character ``` (parse) [error] 46-46: unexpected character ``` (parse) [error] 47-47: unexpected character ``` (parse) [error] 47-47: unexpected character ``` (parse) |
||||||||||||||
|
|
||||||||||||||
| --background-image-dots-pattern: radial-gradient(transparent 1px, white 1px); | ||||||||||||||
| --background-image-dots-pattern-dark: radial-gradient(transparent 1px, rgb(0 0 0) 1px); | ||||||||||||||
|
|
||||||||||||||
| @keyframes bg-position { | ||||||||||||||
| 0% { | ||||||||||||||
| background-position: 0% 50%; | ||||||||||||||
| } | ||||||||||||||
| 100% { | ||||||||||||||
| background-position: 100% 50%; | ||||||||||||||
| } | ||||||||||||||
| } | ||||||||||||||
| } | ||||||||||||||
|
|
||||||||||||||
| /* | ||||||||||||||
| The default border color has changed to `currentColor` in Tailwind CSS v4, | ||||||||||||||
| so we've added these compatibility styles to make sure everything still | ||||||||||||||
| looks the same as it did with Tailwind CSS v3. | ||||||||||||||
| If we ever want to remove these styles, we need to add an explicit border | ||||||||||||||
| color utility to any element that depends on these defaults. | ||||||||||||||
| */ | ||||||||||||||
| @layer base { | ||||||||||||||
| *, | ||||||||||||||
| ::after, | ||||||||||||||
| ::before, | ||||||||||||||
| ::backdrop, | ||||||||||||||
| ::file-selector-button { | ||||||||||||||
| border-color: var(--color-gray-200, currentColor); | ||||||||||||||
| } | ||||||||||||||
| } | ||||||||||||||
|
|
||||||||||||||
| @layer base { | ||||||||||||||
| :root { | ||||||||||||||
|
|
||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ export function Note({ Notes, defaultLayout = [12, 32, 48] }: NoteProps): React. | |
|
|
||
| <Separator /> | ||
|
|
||
| <div className="bg-background/95 p-4 backdrop-blur supports-[backdrop-filter]:bg-background/60"> | ||
| <div className="bg-background/95 p-4 backdrop-blur-sm supports-backdrop-filter:bg-background/60"> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify browser support for backdrop filter syntax. The change in feature query syntax from 🌐 Web query: 💡 Result: The correct syntax for backdrop-filter feature detection in Tailwind CSS combines standard CSS 1. Basic CSS Feature Query SyntaxFor native CSS detection of @supports (backdrop-filter: blur(1px)) {
/* Styles for supported browsers */
}
@supports not (backdrop-filter: blur(1px)) {
/* Fallback styles */
}2. Tailwind-Specific ImplementationTailwind requires explicit configuration for custom // tailwind.config.js
module.exports = {
theme: {
extend: {
supports: {
'backdrop-blur': 'backdrop-filter: blur(4px)'
}
}
}
}Then use in your HTML with Tailwind's <div class="supports-[backdrop-filter]:backdrop-blur-md">
<!-- Content -->
</div>Key Considerations:
<div class="bg-white/50 backdrop-blur-lg">...</div>For complex scenarios requiring multiple filters: <div class="backdrop-filter-[blur(8px)_saturate(180%)]">...</div>Troubleshooting Tip: If filters disappear after build, check your PostCSS/SASS configuration isn't stripping empty CSS variables[6][7]. Citations:
Action Required: Update Feature Query Syntax for Backdrop Filter
|
||
| <form> | ||
| <div className="relative"> | ||
| <SearchIcon className="absolute left-2 top-2.5 h-4 w-4 text-muted-foreground" /> | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,7 +11,7 @@ export function CreateNoteButton(): React.JSX.Element { | |||||
| <SimpleTooltip content="Create new Note"> | ||||||
| <Button | ||||||
| className={cn( | ||||||
| 'h-12 animate-shimmer items-center justify-center border border-slate-800 bg-[linear-gradient(110deg,#000103,45%,#1e2631,55%,#000103)] bg-[length:200%_100%] px-6 font-medium text-foreground transition-colors focus:outline-none focus:ring-1 focus:ring-offset-foreground rounded-full grid' | ||||||
| 'h-12 animate-shimmer items-center justify-center border border-slate-800 bg-[linear-gradient(110deg,#000103,45%,#1e2631,55%,#000103)] bg-[length:200%_100%] px-6 font-medium text-foreground transition-colors focus:outline-hidden focus:ring-1 focus:ring-offset-foreground rounded-full grid' | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid Tailwind CSS class: The class Apply this diff to fix the invalid class: - 'h-12 animate-shimmer items-center justify-center border border-slate-800 bg-[linear-gradient(110deg,#000103,45%,#1e2631,55%,#000103)] bg-[length:200%_100%] px-6 font-medium text-foreground transition-colors focus:outline-hidden focus:ring-1 focus:ring-offset-foreground rounded-full grid'
+ 'h-12 animate-shimmer items-center justify-center border border-slate-800 bg-[linear-gradient(110deg,#000103,45%,#1e2631,55%,#000103)] bg-[length:200%_100%] px-6 font-medium text-foreground transition-colors focus:outline-none focus:ring-1 focus:ring-offset-foreground rounded-full grid'📝 Committable suggestion
Suggested change
|
||||||
| )} | ||||||
| onClick={() => openModal('create-note-modal')} | ||||||
| size="icon" | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,15 +4,16 @@ import { cva, type VariantProps } from 'class-variance-authority' | |||||
| import { cn } from '@renderer/utils' | ||||||
|
|
||||||
| const badgeVariants = cva( | ||||||
| 'inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2', | ||||||
| 'inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2', | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid Tailwind CSS class: The class Apply this diff to fix the invalid class: - 'inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2',
+ 'inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2',📝 Committable suggestion
Suggested change
|
||||||
| { | ||||||
| variants: { | ||||||
| variant: { | ||||||
| default: 'border-transparent bg-primary text-primary-foreground shadow hover:bg-primary/80', | ||||||
| default: | ||||||
| 'border-transparent bg-primary text-primary-foreground shadow-sm hover:bg-primary/80', | ||||||
| secondary: | ||||||
| 'border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80', | ||||||
| destructive: | ||||||
| 'border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80', | ||||||
| 'border-transparent bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/80', | ||||||
| outline: 'text-foreground' | ||||||
| } | ||||||
| }, | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,7 +13,7 @@ const Checkbox = React.forwardRef< | |||||
| <CheckboxPrimitive.Root | ||||||
| ref={ref} | ||||||
| className={cn( | ||||||
| 'peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground', | ||||||
| 'peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground', | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid Tailwind CSS class: The class Apply this diff to fix the invalid class: - 'peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground',
+ 'peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground',📝 Committable suggestion
Suggested change
|
||||||
| className | ||||||
| )} | ||||||
| {...props} | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ const CommandInput = React.forwardRef< | |
|
|
||
| <CommandPrimitive.Input | ||
| className={cn( | ||
| 'flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50', | ||
| 'flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-hidden placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid Tailwind class affecting accessibility. The class Use the standard Tailwind class: - 'flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-hidden placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50',
+ 'flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50',
- 'relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-hidden data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0',
+ 'relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0',Also applies to: 120-120 |
||
| className | ||
| )} | ||
| ref={ref} | ||
|
|
@@ -117,7 +117,7 @@ const CommandItem = React.forwardRef< | |
| >(({ className, ...props }, ref) => ( | ||
| <CommandPrimitive.Item | ||
| className={cn( | ||
| 'relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0', | ||
| 'relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-hidden data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0', | ||
| className | ||
| )} | ||
| ref={ref} | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -44,7 +44,7 @@ const DialogContent = React.forwardRef< | |||||
| > | ||||||
| {children} | ||||||
|
|
||||||
| <DialogPrimitive.Close 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 data-[state=open]:bg-accent data-[state=open]:text-muted-foreground"> | ||||||
| <DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground"> | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure modal close button remains accessible. The change to Consider keeping the default focus outline or using a more visible alternative: -focus:outline-hidden
+focus:ring-2 focus:ring-offset-2 focus:ring-primary📝 Committable suggestion
Suggested change
|
||||||
| <X className="h-4 w-4" /> | ||||||
|
|
||||||
| <span className="sr-only">Close</span> | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -48,7 +48,7 @@ const DialogContent = React.forwardRef< | |||||
| > | ||||||
| {children} | ||||||
|
|
||||||
| <DialogPrimitive.Close 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 data-[state=open]:bg-accent data-[state=open]:text-muted-foreground"> | ||||||
| <DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground"> | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid Tailwind class affecting accessibility. The class Use the standard Tailwind class: - <DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
+ <DialogPrimitive.Close 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 data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">📝 Committable suggestion
Suggested change
|
||||||
| <Cross2Icon className="h-4 w-4" /> | ||||||
|
|
||||||
| <span className="sr-only">Close</span> | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,7 +8,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(({ className, ...pr | |||||
| return ( | ||||||
| <input | ||||||
| className={cn( | ||||||
| 'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50', | ||||||
| 'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50', | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix invalid Tailwind CSS class name. The class Fix the class name: - 'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
+ 'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',📝 Committable suggestion
Suggested change
|
||||||
| className | ||||||
| )} | ||||||
| ref={ref} | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove automatic staging of all files.
Adding
git add .afterpnpm pre-commitis risky as it:Remove this line to maintain control over what gets committed:
-git add .📝 Committable suggestion