diff --git a/apps/desktop/src/app/accounts/settings.component.ts b/apps/desktop/src/app/accounts/settings.component.ts
index 066b33e4b08..3d230805c91 100644
--- a/apps/desktop/src/app/accounts/settings.component.ts
+++ b/apps/desktop/src/app/accounts/settings.component.ts
@@ -18,7 +18,6 @@ import { getUserId } from "@bitwarden/common/auth/services/account.service";
import { AutofillSettingsServiceAbstraction } from "@bitwarden/common/autofill/services/autofill-settings.service";
import { DomainSettingsService } from "@bitwarden/common/autofill/services/domain-settings.service";
import { DeviceType } from "@bitwarden/common/enums";
-import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
import { PinServiceAbstraction } from "@bitwarden/common/key-management/pin/pin.service.abstraction";
import {
VaultTimeout,
@@ -267,10 +266,7 @@ export class SettingsComponent implements OnInit, OnDestroy {
// Autotype is for Windows initially
const isWindows = this.platformUtilsService.getDevice() === DeviceType.WindowsDesktop;
- const windowsDesktopAutotypeFeatureFlag = await this.configService.getFeatureFlag(
- FeatureFlag.WindowsDesktopAutotype,
- );
- this.showEnableAutotype = isWindows && windowsDesktopAutotypeFeatureFlag;
+ this.showEnableAutotype = isWindows;
this.userHasMasterPassword = await this.userVerificationService.hasMasterPassword();
diff --git a/apps/desktop/src/app/app.component.ts b/apps/desktop/src/app/app.component.ts
index b0c5eb03723..ae6ba4b6387 100644
--- a/apps/desktop/src/app/app.component.ts
+++ b/apps/desktop/src/app/app.component.ts
@@ -100,6 +100,8 @@ const SyncInterval = 6 * 60 * 60 * 1000; // 6 hours