Skip to content

Commit

Permalink
feat: update icon for BUILT deployment status
Browse files Browse the repository at this point in the history
  • Loading branch information
mohandast52 committed Aug 2, 2024
1 parent 057846b commit 1c8e6f6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/components/Main/MainHeader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ const useSetupTrayIcon = () => {
setTrayIcon?.('running');
} else if (serviceStatus === DeploymentStatus.STOPPED) {
setTrayIcon?.('paused');
} else if (serviceStatus === DeploymentStatus.BUILT) {
setTrayIcon?.('logged-out');
}
}, [safeBalance, serviceStatus, setTrayIcon]);

Expand Down

0 comments on commit 1c8e6f6

Please sign in to comment.