Skip to content

Commit

Permalink
Fix search issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BerkeAras committed Jan 22, 2022
1 parent b1c0a7d commit 9c57259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/_Header_Searchfield/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const SearchField = () => {
.then((response) => response.json())
.then((result) => {
let userResult = result[0]
let groupResult = result[1]
let groupResult = Object.values(result[1])
let topicResult = result[2]

setUserResult(userResult)
Expand Down

1 comment on commit 9c57259

@vercel
Copy link

@vercel vercel bot commented on 9c57259 Jan 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.