Skip to content

Commit

Permalink
pkg: rest-hooks patch (#2486)
Browse files Browse the repository at this point in the history
* pkg: rest-hooks patch
  • Loading branch information
ntucker committed May 12, 2021
1 parent 257b14e commit c1b4843
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions airbyte-webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions airbyte-webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@fortawesome/react-fontawesome": "^0.1.8",
"@papercups-io/chat-widget": "^1.1.5",
"@papercups-io/storytime": "^1.0.6",
"@rest-hooks/legacy": "^2.0.1",
"@rest-hooks/legacy": "^2.0.5",
"dayjs": "^1.8.35",
"flat": "^5.0.2",
"formik": "2.1.5",
Expand All @@ -38,7 +38,7 @@
"react-table": "^7.5.0",
"react-use": "^15.3.8",
"react-widgets": "^4.5.0",
"rest-hooks": "^5.0.3",
"rest-hooks": "^5.0.20",
"sanitize-html": "^2.1.2",
"styled-components": "^5.1.1",
"yup": "^0.28.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useDestinationDefinitionSpecificationLoad = (
destinationDefinitionId: string | null
): {
isLoading: boolean;
destinationDefinitionSpecification: DestinationDefinitionSpecification;
destinationDefinitionSpecification?: DestinationDefinitionSpecification;
error?: Error;
} => {
const {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const useSourceDefinitionSpecificationLoad = (
): {
isLoading: boolean;
error?: Error;
sourceDefinitionSpecification: SourceDefinitionSpecification;
sourceDefinitionSpecification?: SourceDefinitionSpecification;
} => {
const {
loading: isLoading,
Expand Down

0 comments on commit c1b4843

Please sign in to comment.