From b4b9db7ffa2104c19e7bd079e4f394a817f40bc0 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 25 May 2022 18:38:09 -0400 Subject: [PATCH] spelling: except if Change-type: patch Signed-off-by: Josh Soref --- lib/gui/app/models/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui/app/models/store.ts b/lib/gui/app/models/store.ts index f30b6069..27026e2a 100644 --- a/lib/gui/app/models/store.ts +++ b/lib/gui/app/models/store.ts @@ -200,7 +200,7 @@ function storeReducer( constraints.isDriveValid(drive, image) && !drive.isReadOnly && constraints.isDriveSizeRecommended(drive, image) && - // We don't want to auto-select large drives execpt is autoSelectAllDrives is true + // We don't want to auto-select large drives except if autoSelectAllDrives is true (!constraints.isDriveSizeLarge(drive) || shouldAutoselectAll) && // We don't want to auto-select system drives !constraints.isSystemDrive(drive)