Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbrowne committed May 26, 2024
1 parent 3aaf334 commit 7736558
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/browser/context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import Link from "next/link";
import { Router, useRouter } from "next/router";
import React, {
createContext,
Dispatch,
SetStateAction,
useContext,
useEffect,
useMemo,
Expand Down Expand Up @@ -145,7 +147,7 @@ const makeUseBrowseState =
(
useParamsHook: (
initialState: BrowseParams
) => readonly [BrowseParams, (state: BrowseParams) => void]
) => readonly [BrowseParams, Dispatch<SetStateAction<BrowseParams>>]
) =>
() => {
const inputRef = useRef<HTMLInputElement>(null);
Expand Down

0 comments on commit 7736558

Please sign in to comment.