diff options
| author | Dhravya Shah <[email protected]> | 2024-07-26 12:02:20 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-26 12:02:20 -0500 |
| commit | 650237195fd07ff0e186e8a1808e02e31a016d37 (patch) | |
| tree | 16d8afcd9f22b002284af092d7f50ca735f25230 /apps/web/app/(dash) | |
| parent | Merge pull request #171 from JedPattersonn/jed/fix-breadcrumb (diff) | |
| parent | catch (diff) | |
| download | supermemory-650237195fd07ff0e186e8a1808e02e31a016d37.tar.xz supermemory-650237195fd07ff0e186e8a1808e02e31a016d37.zip | |
Merge pull request #163 from aryasaatvik/pnpm
pnpm
Diffstat (limited to 'apps/web/app/(dash)')
| -rw-r--r-- | apps/web/app/(dash)/home/filterSpaces.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/app/(dash)/home/filterSpaces.tsx b/apps/web/app/(dash)/home/filterSpaces.tsx index 9896141c..ec90a29a 100644 --- a/apps/web/app/(dash)/home/filterSpaces.tsx +++ b/apps/web/app/(dash)/home/filterSpaces.tsx @@ -62,7 +62,9 @@ export function FilterSpaces({ placeholder={selectedSpaces.length ? "" : "Search in Spaces"} onKeyDown={handleKeyDown} className="text-white peer placeholder:text-white" - onChangeCapture={(e) => setInput(e.currentTarget.value)} + onChangeCapture={(e: React.ChangeEvent<HTMLInputElement>) => + setInput(e.target.value) + } value={input} /> </div> |