Skip to content

Commit 850832e

Browse files
committed
refactor: remove unnecessary console.log statements in AddProtectedData and ProtectedDataList components
1 parent e03bcc7 commit 850832e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/views/myData/addProtectedData.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ export default function AddProtectedData() {
117117
},
118118
name: formData.encryptedDataName,
119119
onStatusUpdate: (status) => {
120-
console.log();
121120
keepInterestingStatusUpdates(addOrUpdateStatusToStore, status);
122121
},
123122
});

src/views/myData/protectedDataList.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ export default function ProtectedDataList() {
8282
} = useQuery({
8383
queryKey: ['apps', userAddress, chainId],
8484
queryFn: async () => {
85-
console.log('Fetching protected data for address:', userAddress, chainId);
8685
if (!userAddress) {
8786
throw new Error('User address is undefined');
8887
}

0 commit comments

Comments
 (0)