Skip to content

Commit

Permalink
Bump SDK and fix invalid reference (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospassos committed Apr 27, 2023
1 parent 283cb1c commit 9634c03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@croct/plug": "^0.13.0",
"@croct/sdk": "^0.12.3"
"@croct/sdk": "^0.12.4"
},
"devDependencies": {
"@babel/core": "^7.20.2",
Expand Down
2 changes: 1 addition & 1 deletion src/CroctProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const CroctProvider: FunctionComponent<CroctProviderProps> = (props): Rea
get: function getProperty(target, property: keyof Plug): any {
if (property === 'plug') {
return (options: Configuration): void => {
croct.plug({...baseConfiguration.current, ...options});
target.plug({...baseConfiguration.current, ...options});
};
}

Expand Down

0 comments on commit 9634c03

Please sign in to comment.