Skip to content

Commit

Permalink
clean up comments/console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jpople committed Sep 7, 2023
1 parent 8218476 commit c809cf9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ const EmptyTableState = ({
[]
);

console.log(vendorSelected);

return (
<Stack
backgroundColor="gray.50"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ const PrivacyDeclarationFormTab = ({

const [updateSystemMutationTrigger] = useUpdateSystemMutation();
const [showForm, setShowForm] = useState(false);
// const [showDictionaryModal, setShowDictionaryModal] = useState(false);
const [currentDeclaration, setCurrentDeclaration] = useState<
PrivacyDeclarationResponse | undefined
>(undefined);
Expand Down Expand Up @@ -225,14 +224,6 @@ const PrivacyDeclarationFormTab = ({
setCurrentDeclaration(declarationToEdit);
};

// const handleOpenDictModal = () => {
// setShowDictionaryModal(true);
// };

// const handleCloseDictModal = () => {
// setShowDictionaryModal(false);
// };

const handleAcceptDictSuggestions = (suggestions: DictDataUse[]) => {
const newDeclarations = suggestions.map((du) =>
transformDictDataUseToDeclaration(du)
Expand Down

0 comments on commit c809cf9

Please sign in to comment.