fix(SW-1115) trigger search

This commit is contained in:
Pontus Dreij
2024-12-11 11:40:45 +01:00
parent 4b51b5aff6
commit 3c9aaa3dd3
7 changed files with 26 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
import React, { forwardRef, InputHTMLAttributes } from "react"
import { Input as InputRAC } from "react-aria-components"
import Body from "@/components/TempDesignSystem/Text/Body"
@@ -10,7 +11,7 @@ const Input = forwardRef<
>(function InputComponent(props, ref) {
return (
<Body asChild>
<input {...props} ref={ref} className={styles.input} />
<InputRAC {...props} ref={ref} className={styles.input} />
</Body>
)
})