Skip to content

Commit 531f096

Browse files
Merge pull request #371 from auth0/fix/update-user-mfa-component
fix(core,react): update user mfa component with latest feedback
2 parents 66cdddc + 1e97702 commit 531f096

133 files changed

Lines changed: 3641 additions & 3042 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ The following components are exported from `@auth0/universal-components-react`:
388388

389389
| Component | Export Name |
390390
| ------------------------- | -------------------------------------------------------- |
391-
| MFA Management | `UserMFAMgmt`, `UserMFAMgmtView` |
391+
| MFA Management | `UserMFAManagement`, `UserMFAManagementView` |
392392
| SSO Provider Edit | `SsoProviderEdit`, `SsoProviderEditView` |
393393
| SSO Provider Create | `SsoProviderCreate`, `SsoProviderCreateView` |
394394
| SSO Provider Table | `SsoProviderTable`, `SsoProviderTableView` |
365 KB
Loading
-72.3 KB
Binary file not shown.

docs-site/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import SsoProviderCreateDocs from './pages/SsoProviderCreateDocs';
1313
import SsoProviderEditDocs from './pages/SsoProviderEditDocs';
1414
import SsoProviderTableDocs from './pages/SsoProviderTableDocs';
1515
import Styling from './pages/Styling';
16-
import UserMFAMgmtDocs from './pages/UserMFAMgmtDocs';
16+
import UserMFAManagementDocs from './pages/UserMFAManagementDocs';
1717

1818
function AppContent() {
1919
return (
@@ -23,7 +23,7 @@ function AppContent() {
2323
<Route path="/getting-started" element={<GettingStarted />} />
2424
<Route path="/styling" element={<Styling />} />
2525
<Route path="/my-account" element={<MyAccountIntroduction />} />
26-
<Route path="/my-account/user-mfa-management" element={<UserMFAMgmtDocs />} />
26+
<Route path="/my-account/user-mfa-management" element={<UserMFAManagementDocs />} />
2727
<Route path="/my-organization" element={<MyOrganizationIntroduction />} />
2828
<Route
2929
path="/my-organization/organization-details-edit"

docs-site/src/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default function Layout({ children }: LayoutProps) {
8181
color: 'text-blue-500',
8282
items: [
8383
{ name: 'Overview', href: '/my-account' },
84-
{ name: 'UserMFAMgmt', href: '/my-account/user-mfa-management' },
84+
{ name: 'UserMFAManagement', href: '/my-account/user-mfa-management' },
8585
],
8686
},
8787
{

docs-site/src/pages/MyAccountIntroduction.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default function MyAccountIntroduction() {
4848
<div className="flex items-start justify-between">
4949
<div className="flex-1">
5050
<h3 className="text-lg font-semibold text-gray-900 mb-2">
51-
UserMFAMgmt{' '}
51+
UserMFAManagement{' '}
5252
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800 mr-3">
5353
Available
5454
</span>
@@ -265,7 +265,7 @@ VITE_AUTH0_CLIENT_ID=your-spa-client-id`}
265265
href="/my-account/user-mfa-management"
266266
className="inline-flex items-center px-4 py-2 bg-white/20 hover:bg-white/30 backdrop-blur-sm rounded-lg font-medium transition-colors"
267267
>
268-
Explore UserMFAMgmt
268+
Explore UserMFAManagement
269269
<svg className="ml-2 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
270270
<path
271271
strokeLinecap="round"

0 commit comments

Comments
 (0)