Skip to content

Commit 0a7bc9b

Browse files
authored
Update link.ts to address typo (#554)
- `herf` should be `href`
1 parent 0f08b12 commit 0a7bc9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/react/link.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export type LinkProps = PropsWithChildren<
1010
replace?: boolean;
1111
prefetch?: boolean;
1212
innerRef?: MutableRefObject<HTMLAnchorElement | null>;
13-
} & Omit<AnchorHTMLAttributes<Record<never, never>>, "herf" | "hrefLang">
13+
} & Omit<AnchorHTMLAttributes<Record<never, never>>, "href" | "hrefLang">
1414
>;
1515

1616
/**

0 commit comments

Comments
 (0)