diff --git a/.changeset/three-jars-collect.md b/.changeset/three-jars-collect.md new file mode 100644 index 000000000..327ba16c5 --- /dev/null +++ b/.changeset/three-jars-collect.md @@ -0,0 +1,5 @@ +--- +'wingman-fe': minor +--- + +Remove enforced typing on client (ApolloClient) for LocationSuggest diff --git a/fe/lib/components/LocationSuggest/LocationSuggest.tsx b/fe/lib/components/LocationSuggest/LocationSuggest.tsx index b8d54894b..ba75ccbdc 100644 --- a/fe/lib/components/LocationSuggest/LocationSuggest.tsx +++ b/fe/lib/components/LocationSuggest/LocationSuggest.tsx @@ -17,7 +17,7 @@ import { LOCATION_SUGGEST } from './queries'; interface FieldProps extends ComponentPropsWithRef {} interface Props extends Omit { - client?: ApolloClient>; + client?: ApolloClient; debounceDelay?: number; first?: number; usageTypeCode?: string;