8000 fix(connect): removes default export check causing error when importing by jrdn91 · Pull Request #772 · permaweb/ao · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(connect): removes default export check causing error when importing #772

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions connect/src/client/node/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ import * as WarpArBundles from 'warp-arbundles'
// eslint-disable-next-line no-unused-vars
import { Types } from '../../dal.js'

/**
* hack to get module resolution working on node jfc
*/
const pkg = WarpArBundles.default ? WarpArBundles.default : WarpArBundles
const { createData, ArweaveSigner } = pkg
const { createData, ArweaveSigner } = WarpArBundles

/**
* A function that builds a signer using a wallet jwk interface
Expand Down
Loading
0