Skip to content

Commit

Permalink
dev -> test (#481)
Browse files Browse the repository at this point in the history
* feat(EWM-264): account balances (#474)

Co-authored-by: Egor Komarov <egor.komarov@bf.rocks>

* refactor: Remove language menu (#476)

* app-deploy.yaml on push branches test

* Add branch-workflow.yaml

* melos.yaml add deploy_ios, deploy_android, deploy_fad commands

* Update README.md

* Rename to deploy_fad_ios and deploy_fad_android

* Move get SENTRY_DSN to build.sh

* build.sh deploy to store only from main

* app-deploy.yaml store job check branch to deploy to stores

* Hide language item from menu in profile

* Update build flow

* Update Readme Deploy from local machine section

* Fix android-deploy orders

* fix: Ewm 250 (#478)

* EWM-250. Fix add seed

* PopScope replace onPopInvoked -> onPopInvokedWithResult + addPostFrameCallback

* Remove todo

* add check didPop in onPopInvokedWithResult

* Fix create new seed from profile

* Fix analyzer issue

* SeedPhraseModel

* EWM-272. Hide stake button (#480)

---------

Co-authored-by: Egor Komarov <Odrin@users.noreply.github.com>
Co-authored-by: Egor Komarov <egor.komarov@bf.rocks>
  • Loading branch information
3 people authored Sep 9, 2024
1 parent ef8be13 commit 6ff759e
Showing 1 changed file with 18 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,23 +117,24 @@ class _ActionList extends StatelessWidget {
icon: _actionIcon(action),
onPressed: account?.let((_) => _actionOnPressed(context)),
),
if (hasStake)
_Button(
label: LocaleKeys.stakeWord.tr(),
icon: LucideIcons.layers2,
badge: hasStakeActions,
onPressed: account?.let(
(account) => () {
context.goFurther(
AppRoute.walletStake.pathWithData(
pathParameters: {
walletStakeAddressPathParam: account.address.address,
},
),
);
},
),
),
// TODO(knightforce): temp
// if (hasStake)
// _Button(
// label: LocaleKeys.stakeWord.tr(),
// icon: LucideIcons.layers2,
// badge: hasStakeActions,
// onPressed: account?.let(
// (account) => () {
// context.goFurther(
// AppRoute.walletStake.pathWithData(
// pathParameters: {
// walletStakeAddressPathParam: account.address.address,
// },
// ),
// );
// },
// ),
// ),
],
),
),
Expand Down

0 comments on commit 6ff759e

Please sign in to comment.