Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrudulpatil18 committed Oct 16, 2024
1 parent 307478c commit 4e95a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function Header() {
<DiscordLogoIcon className="text-gray-400 hover:text-gray-600 transition-colors" />
</a> */}
<div className="hidden md:flex items-center space-x-4">
<SearchComponent/>
<SearchComponent />
<HeaderDropdown />
<HeaderLogin />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SearchComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const SearchComponent: React.FC<SearchComponentProps> = ({
params: { q: searchQuery },
})
if (onResultsFetched) {
onResultsFetched(data.snippets);
onResultsFetched(data.snippets)
}
return data.snippets
},
Expand Down

0 comments on commit 4e95a1e

Please sign in to comment.