Remove console log from handleShowInstructions in AdminPanel component

This commit is contained in:
Cole McIntosh 2025-06-04 14:25:57 -06:00
parent 9c481e3ba8
commit 58b1f78ff0

View File

@ -193,7 +193,6 @@ const AdminPanel: React.FC<AdminPanelProps> = ({
};
const handleShowInstructions = (formValues: Record<string, any>) => {
console.log("Form submitted with values:", formValues);
setIsAddSSOModalVisible(false);
setIsInstructionsModalVisible(true);
};