Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
absorbb committed Nov 18, 2024
1 parent 38c66c8 commit bf5020e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions webapps/console/pages/[workspaceId]/connections/edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ type FunctionAPIResult = {
error: any;
};
const Loader = () => {
const workspace = useWorkspace();
const functionsApi = useConfigApi("function");
const links = useConfigObjectLinks({ withData: true });
const streams = useConfigObjectList("stream");
const destinations = useConfigObjectList("destination");
const functions = useConfigObjectList("function");
const functions = useConfigObjectList("function").filter(f => f.kind !== "profile");
return (
<ConnectionEditorPage
streams={streams}
Expand Down

0 comments on commit bf5020e

Please sign in to comment.