Skip to content

Commit

Permalink
Merge branch 'main' into feat/wagmi-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesrp13 committed Mar 22, 2024
2 parents 6a45c29 + 3d85927 commit bc9242f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Installing dependencies
run: yarn install --frozen-lockfile
- name: Lint rome
run: yarn rome ci .
run: yarn rome ci .
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Setup Node.js 16.x
- name: Setup Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x

- name: Install Dependencies
run: yarn
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Node.js 16.x
- name: Set up Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -29,4 +29,4 @@ jobs:
pre-publish: yarn build
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

- Update to support WAGMI v2

## 1.1.6

### Patch Changes

- Fix bug where email login couldn't be disabled

## 1.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/lib/connectors/dedicatedWalletConnector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function dedicatedWalletConnector({
customLogo: options.customLogo,
customHeaderText: options.customHeaderText,
enableSMSLogin: enableSMSLogin,
enableEmailLogin: enableEmailLogin || true,
enableEmailLogin: enableEmailLogin,
oauthProviders,
})) as UserDetails

Expand Down

0 comments on commit bc9242f

Please sign in to comment.