Hide Users tab in Settings since it's not connected to the app
The Settings > Users tab is a disconnected prototype that stores data only in localStorage and is not used by any other part of the application. Backend user management is handled separately via Azure AD auto-provisioning. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a67236af73
commit
cf29d70908
1 changed files with 3 additions and 1 deletions
|
|
@ -338,7 +338,7 @@ export const Settings: React.FC<SettingsProps> = ({
|
|||
{ id: 'Channels', label: 'Channels' },
|
||||
{ id: 'SubChannels', label: 'Sub-channels' },
|
||||
{ id: 'ProofTypes', label: 'Proof types' },
|
||||
{ id: 'Users', label: 'Users' },
|
||||
// { id: 'Users', label: 'Users' }, // Hidden: not connected to backend user system
|
||||
{ id: 'Beta', label: '[Beta]' },
|
||||
].map((tab) => (
|
||||
<button
|
||||
|
|
@ -468,9 +468,11 @@ export const Settings: React.FC<SettingsProps> = ({
|
|||
</div>
|
||||
)}
|
||||
|
||||
{/* Users tab hidden: not connected to backend user system
|
||||
{activeTab === 'Users' && (
|
||||
<UsersTab />
|
||||
)}
|
||||
*/}
|
||||
|
||||
{activeTab === 'Beta' && (
|
||||
<div className="max-w-3xl space-y-6">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue