fix type error

This commit is contained in:
Brian Hackett 2025-01-22 08:19:10 -08:00
parent 2916c0538d
commit 2cfbb633e9

View File

@ -18,7 +18,7 @@ interface SettingsProps {
onClose: () => void;
}
type TabType = 'data' | 'providers' | 'features' | 'debug' | 'event-logs' | 'connection';
type TabType = 'data' | 'apiKeys' | 'features' | 'debug' | 'event-logs' | 'connection';
export const SettingsWindow = ({ open, onClose }: SettingsProps) => {
const { debug, eventLogs } = useSettings();