Skip to content

Commit e13deb9

Browse files
committed
fix: 🏷️ Replace ts-expect-error with ts-ignore
Build environments are inconsistent and sometimes throw an error with ts-expect-error
1 parent 5f16ab3 commit e13deb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Search.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function LoadingIcon(props: ComponentPropsWithoutRef<"svg">) {
164164

165165
function HighlightQuery({ text, query }: { text: string; query: string }) {
166166
return (
167-
// @ts-expect-error types not properly updated to react 19
167+
// @ts-ignore
168168
<Highlighter
169169
highlightClassName="underline bg-transparent text-brand-500"
170170
searchWords={[query]}

0 commit comments

Comments
 (0)