Skip to content

🐛 Remove active users widget from navbar, widen agent setup modal#4007

Merged
clubanderson merged 1 commit intomainfrom
fix/remove-active-users-widget
Mar 31, 2026
Merged

🐛 Remove active users widget from navbar, widen agent setup modal#4007
clubanderson merged 1 commit intomainfrom
fix/remove-active-users-widget

Conversation

@clubanderson
Copy link
Copy Markdown
Collaborator

Summary

  • Remove ActiveUsersWidget from both desktop and mobile navbar layouts
  • Widen AgentSetupDialog from md to lg so footer buttons aren't cramped

Test plan

  • Verify active users count no longer appears in top navbar
  • Verify agent setup modal buttons have adequate spacing

- Remove ActiveUsersWidget from both desktop and mobile navbar
- Widen AgentSetupDialog from md to lg so button text isn't cramped

Signed-off-by: Andrew Anderson <andy@clubanderson.com>
Copilot AI review requested due to automatic review settings March 31, 2026 15:58
@kubestellar-prow kubestellar-prow bot added the dco-signoff: yes Indicates the PR's author has signed the DCO. label Mar 31, 2026
@kubestellar-prow
Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign clubanderson for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@netlify
Copy link
Copy Markdown

netlify bot commented Mar 31, 2026

Deploy Preview for kubestellarconsole ready!

Name Link
🔨 Latest commit 7007d4e
🔍 Latest deploy log https://app.netlify.com/projects/kubestellarconsole/deploys/69cbef1ef3f8d30008169e13
😎 Deploy Preview https://deploy-preview-4007.console-deploy-preview.kubestellar.io
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@kubestellar-prow kubestellar-prow bot added the size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. label Mar 31, 2026
@clubanderson clubanderson merged commit 270afa0 into main Mar 31, 2026
20 of 21 checks passed
@kubestellar-prow kubestellar-prow bot deleted the fix/remove-active-users-widget branch March 31, 2026 16:05
@github-actions
Copy link
Copy Markdown
Contributor

👋 Hey @clubanderson — thanks for opening this PR!

🤖 This project is developed exclusively using AI coding assistants.

Please do not attempt to code anything for this project manually.
All contributions should be authored using an AI coding tool such as:

This ensures consistency in code style, architecture patterns, test coverage,
and commit quality across the entire codebase.


This is an automated message.

@github-actions
Copy link
Copy Markdown
Contributor

Thank you for your contribution! Your PR has been merged.

Check out what's new:

Stay connected: Slack #kubestellar-dev | Multi-Cluster Survey

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Removes the active users indicator from the top navigation and adjusts the agent setup modal sizing to improve button spacing.

Changes:

  • Removed ActiveUsersWidget from both desktop and mobile navbar layouts.
  • Changed AgentSetupDialog modal size from md to lg.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
web/src/components/layout/navbar/Navbar.tsx Removes ActiveUsersWidget from navbar UI (desktop + mobile overflow).
web/src/components/agent/AgentSetupDialog.tsx Updates modal sizing to provide more space for footer actions.


return (
<BaseModal isOpen={show} onClose={() => handleDismiss(false)} size="md">
<BaseModal isOpen={show} onClose={() => handleDismiss(false)} size="lg">
Copy link

Copilot AI Mar 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing BaseModal size from md to lg affects both width and height (BaseModal.tsx maps lg to max-w-4xl and min-h-[80vh]). If the goal is only to widen the dialog for footer button spacing, this may unintentionally create a very tall modal with lots of empty space / extra scrolling on smaller viewports. Consider keeping size="md" and widening via className (e.g., a larger max-w-*), or extend BaseModal to separate width and height sizing so you can widen without increasing min-height.

Suggested change
<BaseModal isOpen={show} onClose={() => handleDismiss(false)} size="lg">
<BaseModal isOpen={show} onClose={() => handleDismiss(false)} className="max-w-4xl">

Copilot uses AI. Check for mistakes.
@clubanderson
Copy link
Copy Markdown
Collaborator Author

🔄 Auto-Applying Copilot Code Review

Copilot code review found 1 code suggestion(s) and 0 general comment(s).

@copilot Please apply all of the following code review suggestions:

  • web/src/components/agent/AgentSetupDialog.tsx (line 99): <BaseModal isOpen={show} onClose={() => handleDismiss(false)} className="max-w-4...

Push all fixes in a single commit. Run cd web && npm run build && npm run lint before committing.


Auto-generated by copilot-review-apply workflow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dco-signoff: yes Indicates the PR's author has signed the DCO. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants