Skip to content

Commit 3219ef8

Browse files
committed
fix
1 parent 90ae0b5 commit 3219ef8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/renderer/components/Compute/LocalMachineSummary.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ export default function LocalMachineSummary() {
128128
Operating system
129129
</Typography>
130130
<Stack direction="row" spacing={0.5} alignItems="center">
131-
{server.platform?.includes('microsoft') && <FaWindows />}
131+
{server.platform?.toLowerCase().includes('microsoft') && (
132+
<FaWindows />
133+
)}
132134
{server.platform?.toLowerCase().includes('mac') && <FaApple />}
133135
{server.platform?.toLowerCase().includes('linux') && <FaLinux />}
134136
<Chip size="sm" variant="soft">

0 commit comments

Comments
 (0)