intialize setup wizard with no routing (#1047)

Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
This commit is contained in:
Drew Ansbacher
2022-01-10 12:28:16 -07:00
committed by Aiden McClelland
parent 3c3dab2312
commit 689b449d7a
2 changed files with 2 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ const routes: Routes = [
scrollPositionRestoration: 'enabled',
preloadingStrategy: PreloadAllModules,
useHash: true,
initialNavigation: 'disabled',
}),
],
exports: [RouterModule],

View File

@@ -18,7 +18,7 @@ export class MockApiService extends ApiService {
async getStatus () {
await pauseFor(1000)
return {
'product-key': false,
'product-key': true,
migrating: false,
}
}