Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

fix: resolve mobile keyboard fluctuation during search #9248

Merged
merged 16 commits into from
Nov 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add search button
  • Loading branch information
badrivlog committed Nov 14, 2023
commit 4d172730bea20990259c306fdda0608c03758727
4 changes: 4 additions & 0 deletions pages/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
searchTagNameInInput,
} from "@services/utils/search/tags";
import { PROJECT_NAME } from "@constants/index";
import Button from "@components/Button";

async function fetchUsersByKeyword(keyword) {
const res = await fetch(
Expand Down Expand Up @@ -251,6 +252,9 @@ export default function Search({
name="keyword"
defaultValue={searchTerm}
/>
<Button type="submit" className="mb-4">
Search
</Button>
</form>
badrivlog marked this conversation as resolved.
Show resolved Hide resolved
</Badge>

Expand Down
Loading