diff --git a/frontend/src/basic/NavBar/NavBar.tsx b/frontend/src/basic/NavBar/NavBar.tsx
index b5a292e9..9cabcfd0 100644
--- a/frontend/src/basic/NavBar/NavBar.tsx
+++ b/frontend/src/basic/NavBar/NavBar.tsx
@@ -162,7 +162,7 @@ const NavBar = (): JSX.Element => {
sx={tabSx}
label={smallBar ? undefined : t('Order')}
value='order'
- disabled={!slot?.hashId || !slot?.getRobot(slot?.activeShortAlias ?? '')?.activeOrderId}
+ disabled={!slot?.getRobot()?.activeOrderId}
icon={}
iconPosition='start'
/>
diff --git a/frontend/src/basic/RobotPage/RobotProfile.tsx b/frontend/src/basic/RobotPage/RobotProfile.tsx
index 7060e7a8..2ac4f354 100644
--- a/frontend/src/basic/RobotPage/RobotProfile.tsx
+++ b/frontend/src/basic/RobotPage/RobotProfile.tsx
@@ -154,7 +154,7 @@ const RobotProfile = ({
)}
- {loadingCoordinators > 0 ? (
+ {loadingCoordinators > 0 && !Boolean(robot?.activeOrderId) ? (
{t('Looking for orders!')}