Skip to content

Commit 4580f67

Browse files
mjunaidcaclaude
andcommitted
fix(ui): Fix hardware tier display mappings
- Update NavbarAuth to show OS-based tiers instead of robotics tiers - tier1: Windows PC (was Laptop/Cloud) - tier2: Mac (was RTX GPU) - tier3: Linux (was Jetson Edge) - tier4: Chromebook/Web (was Physical Robot) - Aligns with auth-server signup/profile form tier system 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 2f42250 commit 4580f67

File tree

1 file changed

+2
-0
lines changed
  • robolearn-interface/src/components/NavbarAuth

1 file changed

+2
-0
lines changed

robolearn-interface/src/components/NavbarAuth/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ export function NavbarAuth() {
144144
)}
145145
{session.user.hardwareTier && (
146146
<div className={styles.profileItem}>
147+
<span className={styles.profileLabel}>Hardware:</span>
148+
<span className={styles.profileValue}>
147149
{session.user.hardwareTier === 'tier1' ? 'Windows PC' :
148150
session.user.hardwareTier === 'tier2' ? 'Mac' :
149151
session.user.hardwareTier === 'tier3' ? 'Linux' :

0 commit comments

Comments
 (0)