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

Commit

Permalink
Merge pull request #171 from MXCzkEVM/dapp_hooks
Browse files Browse the repository at this point in the history
fix: Grey address bar release
  • Loading branch information
reasje authored Mar 13, 2024
2 parents e6df690 + 8c969ac commit 46ba03f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -751,9 +751,10 @@ class OpenDAppPresenter extends CompletePresenter<OpenDAppState> {
final responseData = CronServiceDataModel.fromDAppHooksData(
axsCronService, dappHooksData, miningCronServiceData);
final response = AXSJSChannelResponseModel<MiningCronServiceDataModel>(
status: AXSJSChannelResponseStatus.success,
message: null,
data: responseData);
status: AXSJSChannelResponseStatus.success,
message: null,
data: responseData,
);
return response.toMap(miningCronServiceData.toMapWrapper);
} else {
throw 'Unknown cron service';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class DragDownPanel extends HookConsumerWidget {
child: Stack(
fit: StackFit.passthrough,
children: [
Expanded(
Positioned.fill(
child: Row(
children: [
Row(
Expand Down

0 comments on commit 46ba03f

Please sign in to comment.