mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-25 08:38:45 +00:00
some routing bug clean up
This commit is contained in:
parent
cb5f4e61de
commit
2e4a3d406d
2 changed files with 4 additions and 4 deletions
|
@ -169,14 +169,14 @@ abstract class FrostRouteGenerator {
|
||||||
case FrostReshareStep3abd.routeName:
|
case FrostReshareStep3abd.routeName:
|
||||||
return RouteGenerator.getRoute(
|
return RouteGenerator.getRoute(
|
||||||
shouldUseMaterialRoute: useMaterialPageRoute,
|
shouldUseMaterialRoute: useMaterialPageRoute,
|
||||||
builder: (_) => const FrostReshareStep2abd(),
|
builder: (_) => const FrostReshareStep3abd(),
|
||||||
settings: settings,
|
settings: settings,
|
||||||
);
|
);
|
||||||
|
|
||||||
case FrostReshareStep3c.routeName:
|
case FrostReshareStep3c.routeName:
|
||||||
return RouteGenerator.getRoute(
|
return RouteGenerator.getRoute(
|
||||||
shouldUseMaterialRoute: useMaterialPageRoute,
|
shouldUseMaterialRoute: useMaterialPageRoute,
|
||||||
builder: (_) => const FrostReshareStep2c(),
|
builder: (_) => const FrostReshareStep3c(),
|
||||||
settings: settings,
|
settings: settings,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -157,8 +157,8 @@ class FrostMSWalletOptionsView extends ConsumerWidget {
|
||||||
walletName: wallet.info.name,
|
walletName: wallet.info.name,
|
||||||
frostCurrency: wallet.cryptoCurrency,
|
frostCurrency: wallet.cryptoCurrency,
|
||||||
),
|
),
|
||||||
walletId: null, // no wallet id yet
|
walletId: wallet.walletId,
|
||||||
stepRoutes: FrostRouteGenerator.joinReshareStepRoutes,
|
stepRoutes: FrostRouteGenerator.importReshareStepRoutes,
|
||||||
onSuccess: () {
|
onSuccess: () {
|
||||||
// successful completion of steps
|
// successful completion of steps
|
||||||
// TODO
|
// TODO
|
||||||
|
|
Loading…
Reference in a new issue