We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99a9080 commit 8101015Copy full SHA for 8101015
packages/connect-react/src/components/SelectApp.tsx
@@ -3,15 +3,17 @@ import {
3
} from "react";
4
import Select, { components } from "react-select";
5
import { useApps } from "../hooks/use-apps";
6
-import { AppResponse, GetAppsOpts } from "@pipedream/sdk";
+import {
7
+ AppResponse, GetAppsOpts,
8
+} from "@pipedream/sdk";
9
10
type SelectAppProps = {
11
value?: Partial<AppResponse> & { name_slug: string; };
12
onChange?: (app?: AppResponse) => void;
13
/**
14
* Additional options for fetching apps (sorting, filtering, etc.)
15
*/
- appsOptions?: Omit<GetAppsOpts, 'q'>;
16
+ appsOptions?: Omit<GetAppsOpts, "q">;
17
};
18
19
export function SelectApp({
0 commit comments