Skip to content

Commit

Permalink
minor fix and promote to stable
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Nov 27, 2024
1 parent 050d6ef commit 86d6700
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/reown_appkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.2.0-beta02
## 1.2.0

- Non-EVM Chains support
- Social Logins
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -539,10 +539,10 @@ class MagicService implements IMagicService {
'x-bundle-id': _packageName,
};
final uri = Uri.parse(UrlConstants.secureService);
final cid = (_connectionChainId ?? '');
final queryParams = {
'projectId': _core.projectId,
'bundleId': _packageName,
if (_connectionChainId != null) 'chainId': _connectionChainId,
if (cid.isNotEmpty) 'chainId': cid,
};
final requestUri = uri.replace(queryParameters: queryParams);
await _webViewController.loadRequest(requestUri, headers: headers);
Expand All @@ -555,7 +555,7 @@ class MagicService implements IMagicService {

void _onFrameMessage(JavaScriptMessage jsMessage) async {
if (Platform.isAndroid) {
_core.logger.d('[$runtimeType] JS Console: $jsMessage');
_core.logger.d('[$runtimeType] JS Console: ${jsMessage.message}');
}
try {
final frameMessage = jsMessage.toFrameMessage();
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_appkit/lib/version.dart

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

2 changes: 1 addition & 1 deletion packages/reown_appkit/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reown_appkit
description: "Reown is the onchain UX platform that provides toolkits built on top of the WalletConnect Network"
version: 1.2.0-beta02
version: 1.2.0
homepage: https://github.com/reown-com/reown_flutter
repository: https://github.com/reown-com/reown_flutter/tree/master/packages/reown_appkit
documentation: https://docs.reown.com/appkit/flutter/core/installation
Expand Down

0 comments on commit 86d6700

Please sign in to comment.