Skip to content

Commit

Permalink
Update link.ts to address typo (alephjs#554)
Browse files Browse the repository at this point in the history
- `herf` should be `href`
  • Loading branch information
moimikey authored May 7, 2023
1 parent 0f08b12 commit 0a7bc9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/react/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type LinkProps = PropsWithChildren<
replace?: boolean;
prefetch?: boolean;
innerRef?: MutableRefObject<HTMLAnchorElement | null>;
} & Omit<AnchorHTMLAttributes<Record<never, never>>, "herf" | "hrefLang">
} & Omit<AnchorHTMLAttributes<Record<never, never>>, "href" | "hrefLang">
>;

/**
Expand Down

0 comments on commit 0a7bc9b

Please sign in to comment.