We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8bdc0c commit 5c79163Copy full SHA for 5c79163
src/components/DownloadImageDialog/ImageForm.tsx
@@ -152,13 +152,14 @@ export const ImageForm = memo(function ImageForm({
152
153
const supportsSecureBoot = useMemo(() => {
154
return (
155
+ osType === 'default' &&
156
model.deviceType.slug === GENERIC_X86_SLUG &&
157
semver.gte(
158
model.version,
159
GENERIC_X86_MINIMUM_SUPPORTED_SECUREBOOT_VERSION,
160
)
161
);
- }, [model.deviceType.slug, model.version]);
162
+ }, [model.deviceType.slug, model.version, osType]);
163
164
const secureBootDontShowAgainKey = `${model.deviceType.slug}_secureboot_warning_do_not_show_again`;
165
0 commit comments