diff --git a/frontend/App.tsx b/frontend/App.tsx index 2d1940a..59e1b21 100755 --- a/frontend/App.tsx +++ b/frontend/App.tsx @@ -838,7 +838,6 @@ const App: React.FC = () => { onRemoveSubChannel={handleRemoveSubChannel} onAddProofType={handleAddProofType} onRemoveProofType={handleRemoveProofType} - onNavigate={handleNavigate} />; case 'Home': default: diff --git a/frontend/components/Settings.tsx b/frontend/components/Settings.tsx index 09bf0d7..9ee78c3 100755 --- a/frontend/components/Settings.tsx +++ b/frontend/components/Settings.tsx @@ -6,8 +6,6 @@ import { TrashIcon } from './icons/TrashIcon'; import { UserIcon } from './icons/UserIcon'; import { PlusIcon } from './icons/PlusIcon'; import { ChevronDownIcon } from './icons/ChevronDownIcon'; -import { ClipboardIcon } from './icons/ClipboardIcon'; -import { CopyGenAIIcon } from './icons/CopyGenAIIcon'; interface ManagementCardProps { title: string; @@ -280,10 +278,9 @@ interface SettingsProps { onRemoveSubChannel: (channel: string, value: string) => void; onAddProofType: (channel: string, subChannel: string, value: string) => void; onRemoveProofType: (channel: string, subChannel: string, value: string) => void; - onNavigate: (view: string) => void; } -type Tab = 'Campaigns' | 'Channels' | 'SubChannels' | 'ProofTypes' | 'Users' | 'Beta'; +type Tab = 'Campaigns' | 'Channels' | 'SubChannels' | 'ProofTypes' | 'Users'; export const Settings: React.FC = ({ options, @@ -295,7 +292,6 @@ export const Settings: React.FC = ({ onRemoveSubChannel, onAddProofType, onRemoveProofType, - onNavigate, }) => { const [activeTab, setActiveTab] = useState('Channels'); const [selectedChannel, setSelectedChannel] = useState(''); @@ -339,7 +335,6 @@ export const Settings: React.FC = ({ { id: 'SubChannels', label: 'Sub-channels' }, { id: 'ProofTypes', label: 'Proof types' }, // { id: 'Users', label: 'Users' }, // Hidden: not connected to backend user system - { id: 'Beta', label: '[Beta]' }, ].map((tab) => ( - - - - - - )}