Skip to content

Commit

Permalink
chore: update page
Browse files Browse the repository at this point in the history
  • Loading branch information
matuzalemsteles committed Mar 7, 2024
1 parent 8c34b23 commit 0e19610
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion www/app/_components/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function Heading({description, title, npmPackage, use}: Props) {
</tbody>
</table>

<ClayLinkContext.Provider value={Link}>
<ClayLinkContext.Provider value={Link as any}>
<NavigationBar
triggerLabel="Navigation"
className={styles.nav}
Expand Down
4 changes: 2 additions & 2 deletions www/app/_examples/autocomplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Example = () => (
}}
placeholder="Enter a number from One to Five"
>
{(item) => <Autocomplete.Item key={item}>{item}</Autocomplete.Item>}
{(item) => <Autocomplete.Item key={item} placeholder="">{item}</Autocomplete.Item>}
</Autocomplete>
</Form.Group>
);
Expand Down Expand Up @@ -46,7 +46,7 @@ export const MenuTrigger = () => (
placeholder="Enter the name of a fruit"
menuTrigger="focus"
>
{(item) => <Autocomplete.Item key={item}>{item}</Autocomplete.Item>}
{(item) => <Autocomplete.Item key={item} placeholder="">{item}</Autocomplete.Item>}
</Autocomplete>
</Form.Group>
);
2 changes: 1 addition & 1 deletion www/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function Home() {
</span>
</h1>
<p className={styles.cta_description}>
Clay is an extensive Component Library, where you'll
Clay is an extensive Component Library, where you&apos;ll
find useful components—with extensive code examples—for
your web application.
</p>
Expand Down

0 comments on commit 0e19610

Please sign in to comment.