chore: cleanup
This commit is contained in:
@@ -98,21 +98,15 @@ export const RobotEditModal = ({ isOpen, handleStart, handleClose, initialSettin
|
|||||||
};
|
};
|
||||||
|
|
||||||
const determineCredentialType = (selector: string, info: CredentialInfo): 'password' | 'email' | 'username' | 'other' => {
|
const determineCredentialType = (selector: string, info: CredentialInfo): 'password' | 'email' | 'username' | 'other' => {
|
||||||
// Check for password type first
|
|
||||||
if (info.type === 'password' || selector.toLowerCase().includes('password')) {
|
if (info.type === 'password' || selector.toLowerCase().includes('password')) {
|
||||||
return 'password';
|
return 'password';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for email patterns in the value or selector
|
|
||||||
if (isEmailPattern(info.value) || selector.toLowerCase().includes('email')) {
|
if (isEmailPattern(info.value) || selector.toLowerCase().includes('email')) {
|
||||||
return 'email';
|
return 'email';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for username patterns in the selector
|
|
||||||
if (isUsernameSelector(selector)) {
|
if (isUsernameSelector(selector)) {
|
||||||
return 'username';
|
return 'username';
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'other';
|
return 'other';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user