@@ -64,7 +64,7 @@ class CoderRemoteProvider(
64
64
// On the first load, automatically log in if we can.
65
65
private var firstRun = true
66
66
private val isInitialized: MutableStateFlow <Boolean > = MutableStateFlow (false )
67
- private var coderHeaderPager = NewEnvironmentPage (context, context.i18n.pnotr(getDeploymentURL()?.first ? : " " ))
67
+ private var coderHeaderPage = NewEnvironmentPage (context, context.i18n.pnotr(getDeploymentURL()?.first ? : " " ))
68
68
private val linkHandler = CoderProtocolHandler (context, settings, httpClient, dialogUi, isInitialized)
69
69
override val environments: MutableStateFlow <LoadableState <List <RemoteProviderEnvironment >>> = MutableStateFlow (
70
70
LoadableState .Value (emptyList())
@@ -219,7 +219,7 @@ class CoderRemoteProvider(
219
219
* Just displays the deployment URL at the moment, but we could use this as
220
220
* a form for creating new environments.
221
221
*/
222
- override fun getNewEnvironmentUiPage (): UiPage = coderHeaderPager
222
+ override fun getNewEnvironmentUiPage (): UiPage = coderHeaderPage
223
223
224
224
/* *
225
225
* We always show a list of environments.
@@ -243,7 +243,7 @@ class CoderRemoteProvider(
243
243
close()
244
244
// start initialization with the new settings
245
245
this @CoderRemoteProvider.client = restClient
246
- coderHeaderPager = NewEnvironmentPage (context, context.i18n.pnotr(restClient.url.toString()))
246
+ coderHeaderPage = NewEnvironmentPage (context, context.i18n.pnotr(restClient.url.toString()))
247
247
pollJob = poll(restClient, cli)
248
248
}
249
249
}
0 commit comments