mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +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:
|
||||
return RouteGenerator.getRoute(
|
||||
shouldUseMaterialRoute: useMaterialPageRoute,
|
||||
builder: (_) => const FrostReshareStep2abd(),
|
||||
builder: (_) => const FrostReshareStep3abd(),
|
||||
settings: settings,
|
||||
);
|
||||
|
||||
case FrostReshareStep3c.routeName:
|
||||
return RouteGenerator.getRoute(
|
||||
shouldUseMaterialRoute: useMaterialPageRoute,
|
||||
builder: (_) => const FrostReshareStep2c(),
|
||||
builder: (_) => const FrostReshareStep3c(),
|
||||
settings: settings,
|
||||
);
|
||||
|
||||
|
|
|
@ -157,8 +157,8 @@ class FrostMSWalletOptionsView extends ConsumerWidget {
|
|||
walletName: wallet.info.name,
|
||||
frostCurrency: wallet.cryptoCurrency,
|
||||
),
|
||||
walletId: null, // no wallet id yet
|
||||
stepRoutes: FrostRouteGenerator.joinReshareStepRoutes,
|
||||
walletId: wallet.walletId,
|
||||
stepRoutes: FrostRouteGenerator.importReshareStepRoutes,
|
||||
onSuccess: () {
|
||||
// successful completion of steps
|
||||
// TODO
|
||||
|
|
Loading…
Reference in a new issue