From 763999f6cfe9c66bd73ce29bda5c8c9fd2b624c8 Mon Sep 17 00:00:00 2001
From: psychedelicious <4822129+psychedelicious@users.noreply.github.com>
Date: Fri, 17 Jan 2025 22:47:45 +1100
Subject: [PATCH] feat: clearer copy for GPU selection
Closes #40
---
.../features/InstallFlow/InstallFlowStepConfigureGpuPicker.tsx | 2 +-
src/shared/types.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/renderer/features/InstallFlow/InstallFlowStepConfigureGpuPicker.tsx b/src/renderer/features/InstallFlow/InstallFlowStepConfigureGpuPicker.tsx
index 22e4fef..dfa94dc 100644
--- a/src/renderer/features/InstallFlow/InstallFlowStepConfigureGpuPicker.tsx
+++ b/src/renderer/features/InstallFlow/InstallFlowStepConfigureGpuPicker.tsx
@@ -19,7 +19,7 @@ export const InstallFlowStepConfigureGpuPicker = memo(() => {
- {operatingSystem === 'macOS' && Tip: Macs usually have no discrete GPU.}
+ {operatingSystem === 'macOS' && Tip: Macs usually have no dedicated GPU.}
>
);
});
diff --git a/src/shared/types.ts b/src/shared/types.ts
index 586766c..19350e2 100644
--- a/src/shared/types.ts
+++ b/src/shared/types.ts
@@ -108,7 +108,7 @@ export const GPU_TYPE_MAP: Record = {
'nvidia<30xx': 'Nvidia (20xx and below)',
'nvidia>=30xx': 'Nvidia (30xx and above)',
amd: 'AMD',
- nogpu: 'No GPU',
+ nogpu: 'No dedicated GPU',
};
/**