- Add WorkspaceSection to sections/index.ts barrel export - Add 'workspace' to SettingsSection union type with HardDrive icon - Position Workspaces tab between Connection and Notifications - Render WorkspaceSection when workspace tab is active (no props needed) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
334 B
TypeScript
9 lines
334 B
TypeScript
/**
|
|
* Settings section components barrel export.
|
|
*/
|
|
|
|
export { AdvancedSection } from './AdvancedSection';
|
|
export { ConnectionSection } from './ConnectionSection';
|
|
export { GeneralSection } from './GeneralSection';
|
|
export { NotificationsSection } from './NotificationsSection';
|
|
export { WorkspaceSection } from './WorkspaceSection';
|