Skip to content

Commit 6b410bf

Browse files
committed
feat(ui): update packages and improve UX/UI
1 parent 8ab6f88 commit 6b410bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

frontend/src/pages/_app.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import { Wallet } from '@/wallets/near';
88
import { NetworkId, CoinFlipContract } from '@/config';
99

1010
// Wallet instance
11-
// const wallet = new Wallet({ networkId: NetworkId });
11+
const wallet = new Wallet({ networkId: NetworkId });
1212

1313
// Optional: Create an access key so the user does not need to sign transactions. Read more about access keys here: https://docs.near.org/concepts/protocol/access-keys
14-
const wallet = new Wallet({
15-
createAccessKeyFor: CoinFlipContract,
16-
networkId: NetworkId,
17-
});
14+
// const wallet = new Wallet({
15+
// createAccessKeyFor: CoinFlipContract,
16+
// networkId: NetworkId,
17+
// });
1818

1919

2020
export default function MyApp({ Component, pageProps }) {

0 commit comments

Comments
 (0)