-
Notifications
You must be signed in to change notification settings - Fork 36
feat (SDK): add sessions page #1081
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Pull Request Test Coverage Report for Build 16520655306Details
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a new sessions page to the SDK that allows users to view and manage their active sessions. The implementation includes a main sessions listing page with session details and a confirmation dialog for revoking sessions.
- Adds a new "Sessions" navigation item to the sidebar
- Creates a sessions page displaying active sessions with device and location information
- Implements a revoke session confirmation dialog with session details
- Adds routing configuration for the new sessions functionality
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 4 comments.
Show a summary per file
File | Description |
---|---|
helpers.ts | Adds "Sessions" navigation item to sidebar menu |
sessions.module.css | Defines CSS styles for sessions page components |
index.tsx | Exports SessionsPage and RevokeSessionConfirm components |
SessionsPage.tsx | Main sessions page component with hardcoded session data |
RevokeSessionConfirm.tsx | Dialog component for confirming session revocation |
routes.tsx | Adds routing configuration for sessions and revoke session pages |
API integration IN PROGRESS