Skip to content

Commit

Permalink
docs: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Oct 14, 2024
1 parent 95f8edf commit 05242b0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/actify/src/components/Chips/AssistChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ const AssitChip = (props: AssitChipProps) => {
) : (
<span className={outline({ disabled })} />
)}
<FocusRing id={chipId} className={ring()} />
<FocusRing className={ring()} />
<Ripple id={chipId} disabled={disabled} />
{renderPrimaryAction({ href, primary: true })}
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/Chips/FilterChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ const FilterChip = (props: FilterChipProps) => {
) : (
<span className={outline({ selected, disabled })}></span>
)}
<FocusRing id={chipId} className={ring()} />
<FocusRing className={ring()} />
<Ripple id={chipId} disabled={disabled} />
{renderPrimaryAction({ href, primary: true })}
{removable && (
Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/Chips/InputChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ const InputChip = (props: InputChipProps) => {
) : (
<span className={outline({ disabled })} />
)}
<FocusRing id={chipId} className={ring()} />
<FocusRing className={ring()} />
<Ripple id={chipId} disabled={disabled} />
{renderPrimaryAction({ href, primary: true })}
{removable && <RemoveButton disabled={disabled} setHide={setHide} />}
Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/Chips/RemoveButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const RemoveButton = (props: RemoveButtonProps) => {
onClick={handleClick}
className={action()}
>
<FocusRing id={id} />
<FocusRing />
<Ripple
id={id}
disabled={disabled}
Expand Down

0 comments on commit 05242b0

Please sign in to comment.