Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Commit

Permalink
fix: testing GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
einaralex committed Nov 8, 2023
1 parent afd176a commit 7ac3aba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
default-branch: main

# The logic below handles the npm publication:
- uses: actions/checkout@v3
- name: Checkout Repository
uses: actions/checkout@v3
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ steps.release.outputs.release_created }}
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"libs/sdk-react-provider": "0.0.4"
"libs/sdk-react-provider": "0.0.3"
}
2 changes: 1 addition & 1 deletion libs/sdk-react-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@monerium/sdk-react-provider",
"version": "0.0.4",
"version": "0.0.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
4 changes: 0 additions & 4 deletions libs/sdk-react-provider/src/lib/provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,6 @@ export const MoneriumProvider: FC<MoneriumProviderProps> = ({
[monerium, isAuthorized, profile]
);

const test = () => {
console.log('test');
};

return (
<MoneriumContext.Provider
value={{
Expand Down

0 comments on commit 7ac3aba

Please sign in to comment.