Skip to content

Commit

Permalink
add "allreadytoinstall" to notification center
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriksen-mark committed Jun 9, 2024
1 parent ae3f944 commit b006a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NotificationCenter/NotificationCenter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const NotificationCenter = ({HOST_IP, API_KEY, updating, notifications }) => {
<div className="notificationCenterContainer">
<div className="notificationBtn" onClick={openWizard}>
<FaBell />
{swstate === "anyreadytoinstall" && <div className="notificationDot"></div>}
{(swstate === "anyreadytoinstall" || swstate === "allreadytoinstall") && <div className="notificationDot"></div>}
{swstate === "installing" && <div className="updating"></div>}
</div>
<Wizard
Expand Down

0 comments on commit b006a86

Please sign in to comment.