From 26ca5506dabf89c04222ee03bd0d05cfafce984d Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Sat, 4 Oct 2025 19:12:01 +0900 Subject: [PATCH] fix lint --- packages/frontend/src/utility/get-user-environment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/utility/get-user-environment.ts b/packages/frontend/src/utility/get-user-environment.ts index 2c8c00c61a..2b302b40b4 100644 --- a/packages/frontend/src/utility/get-user-environment.ts +++ b/packages/frontend/src/utility/get-user-environment.ts @@ -23,7 +23,7 @@ export async function getUserEnvironment(): Promise { if (uaData.platform === 'Windows' && uaData.platformVersion != null) { // https://learn.microsoft.com/ja-jp/microsoft-edge/web-platform/how-to-detect-win11 const majorPlatformVersion = parseInt(uaData.platformVersion.split('.')[0]); - if(majorPlatformVersion >= 13) { + if (majorPlatformVersion >= 13) { osVersion = '11 or later'; } else if (majorPlatformVersion > 0) { osVersion = '10';