Skip to content

Commit

Permalink
Fixed type error on OrgDirectoryGrid prop
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaanthenerd committed Oct 8, 2024
1 parent 1dd1d8e commit dbf0930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Home = async (props: Params) => {
<Carousel clubs={onlyClubs} />
</div>
<TagFilter tags={tags} />
<OrgDirectoryGrid tag={props.searchParams.tag} />
<OrgDirectoryGrid tag={props.searchParams.tag!} />
</div>
</main>
);
Expand Down

0 comments on commit dbf0930

Please sign in to comment.