chore: cleanup

This commit is contained in:
Anoop M D
2023-10-16 02:10:18 +05:30
parent 333564f687
commit 58fbe2e64b
3 changed files with 0 additions and 13 deletions

View File

@@ -12,7 +12,6 @@ const AwsV4Auth = ({ collection }) => {
const { storedTheme } = useTheme();
const awsv4Auth = get(collection, 'root.request.auth.awsv4', {});
console.log('saved auth', awsv4Auth);
const handleSave = () => dispatch(saveCollectionRoot(collection.uid));

View File

@@ -13,7 +13,6 @@ const AwsV4Auth = ({ onTokenChange, item, collection }) => {
const { storedTheme } = useTheme();
const awsv4Auth = item.draft ? get(item, 'draft.request.auth.awsv4', {}) : get(item, 'request.auth.awsv4', {});
console.log('saved auth', awsv4Auth);
const handleRun = () => dispatch(sendRequest(item, collection.uid));
const handleSave = () => dispatch(saveRequest(item.uid, collection.uid));