Skip to content

Commit

Permalink
feat: clearer copy for GPU selection
Browse files Browse the repository at this point in the history
Closes #40
  • Loading branch information
psychedelicious committed Jan 17, 2025
1 parent b1c9b40 commit 763999f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const InstallFlowStepConfigureGpuPicker = memo(() => {
<GpuButton type="amd" />
<GpuButton type="nogpu" />
</ButtonGroup>
{operatingSystem === 'macOS' && <Text fontSize="md">Tip: Macs usually have no discrete GPU.</Text>}
{operatingSystem === 'macOS' && <Text fontSize="md">Tip: Macs usually have no dedicated GPU.</Text>}
</>
);
});
Expand Down
2 changes: 1 addition & 1 deletion src/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const GPU_TYPE_MAP: Record<GpuType, string> = {
'nvidia<30xx': 'Nvidia (20xx and below)',
'nvidia>=30xx': 'Nvidia (30xx and above)',
amd: 'AMD',
nogpu: 'No GPU',
nogpu: 'No dedicated GPU',
};

/**
Expand Down

0 comments on commit 763999f

Please sign in to comment.