Skip to content

Commit 20441c8

Browse files
committed
chore: fix typo in property name
1 parent d3a483e commit 20441c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/kotlin/com/coder/toolbox/CoderRemoteProvider.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class CoderRemoteProvider(
6464
// On the first load, automatically log in if we can.
6565
private var firstRun = true
6666
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 ?: ""))
6868
private val linkHandler = CoderProtocolHandler(context, settings, httpClient, dialogUi, isInitialized)
6969
override val environments: MutableStateFlow<LoadableState<List<RemoteProviderEnvironment>>> = MutableStateFlow(
7070
LoadableState.Value(emptyList())
@@ -219,7 +219,7 @@ class CoderRemoteProvider(
219219
* Just displays the deployment URL at the moment, but we could use this as
220220
* a form for creating new environments.
221221
*/
222-
override fun getNewEnvironmentUiPage(): UiPage = coderHeaderPager
222+
override fun getNewEnvironmentUiPage(): UiPage = coderHeaderPage
223223

224224
/**
225225
* We always show a list of environments.
@@ -243,7 +243,7 @@ class CoderRemoteProvider(
243243
close()
244244
// start initialization with the new settings
245245
this@CoderRemoteProvider.client = restClient
246-
coderHeaderPager = NewEnvironmentPage(context, context.i18n.pnotr(restClient.url.toString()))
246+
coderHeaderPage = NewEnvironmentPage(context, context.i18n.pnotr(restClient.url.toString()))
247247
pollJob = poll(restClient, cli)
248248
}
249249
}

0 commit comments

Comments
 (0)