Skip to content

Commit

Permalink
Merge pull request #853 from Dygmalab/updateNeuronImageFW
Browse files Browse the repository at this point in the history
Fix: Added the right shape for the Raise2 Neuron
  • Loading branch information
alexpargon authored Jul 30, 2024
2 parents b0e6dbf + 4ccf436 commit bff6faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/modules/Firmware/FirmwareNeuronStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const FirmwareNeuronStatus = (props: FirmwareNeuronStatusType) => {
const neuronImage = useTheme().styles.firmwareUpdatePanel.neuronDefyWirelessImage;
return (
<Style>
{deviceProduct === "Defy" && keyboardType === "wireless" ? (
{(deviceProduct === "Defy" && keyboardType === "wireless") || deviceProduct === "Raise2" ? (
<div className={`neuronDefyWrapper ${isUpdated && "isUpdated"} ${status || ""}`}>
<div className="neuronDefyContainer">
{icon ? <div className={`neuronIcon ${status || ""}`}>{icon}</div> : ""}
Expand Down

0 comments on commit bff6faa

Please sign in to comment.