Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/extenders/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Group from "./Group";
export const iconsStyles = tv({
base: "",
slots: {
container: "min-w-fit max-w-fit",
container: "min-w-fit max-w-fit flex-nowrap",
item: "",
},
variants: {
Expand Down
3 changes: 2 additions & 1 deletion src/components/extenders/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ export default function Select<
key="select"
className={mergeClass(
check(),
!((typeof value === "object" && value?.length > 0) || value === undefined) && "opacity-0",
!((typeof value === "object" && value?.length === 0) || value === undefined) &&
"opacity-0",
)}
size="sm"
remix="RiCheckFill"
Expand Down
4 changes: 0 additions & 4 deletions src/components/primitives/EventBlocker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ export default function EventBlocker({ ...props }: EventBlockerProps) {
return (
<div
{...props}
onKeyDown={e => {
e.preventDefault();
e.stopPropagation();
}}
onClick={e => {
e.preventDefault();
e.stopPropagation();
Expand Down
Loading