Skip to content

Commit

Permalink
Remove console log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Da-Colon committed Aug 28, 2024
1 parent 4c90938 commit cddd759
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/components/pages/Roles/forms/useRoleFormEditedRole.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export function useRoleFormEditedRole({ hatsTree }: { hatsTree: DecentTree | und
fieldNames = addRemoveField(fieldNames, 'member', isMemberUpdated);
fieldNames = addRemoveField(fieldNames, 'payments', isPaymentsUpdated);

console.log('πŸš€ ~ fieldNames:', fieldNames);
return {
fieldNames,
status: EditBadgeStatus.Updated,
Expand Down
1 change: 0 additions & 1 deletion src/hooks/streams/useCreateSablierStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ export default function useCreateSablierStream() {
const assembledStreams: ReturnType<typeof prepareLinearStream>[] = [];
const streams = groupedStreams[assetAddress];
let totalStreamsAmount = 0n;
console.log('πŸš€ ~ assetAddress:', assetAddress);
const tokenAddress = getAddress(assetAddress);
streams.forEach(streamData => {
totalStreamsAmount += streamData.totalAmount;
Expand Down
7 changes: 0 additions & 7 deletions src/hooks/utils/useCreateRoles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -731,13 +731,6 @@ export default function useCreateRoles() {
hatPaymentEditedTxs.push(...preparedPaymentTransactions.preparedStreamCreationTransactions);
}

console.log('πŸš€ ~ createAndMintHatsTxs:', createAndMintHatsTxs);
console.log('πŸš€ ~ transferHatTxs:', transferHatTxs);
console.log('πŸš€ ~ hatDetailsChangedTxs:', hatDetailsChangedTxs);
console.log('πŸš€ ~ hatPaymentAddedTxs:', hatPaymentAddedTxs);
console.log('πŸš€ ~ hatPaymentEditedTxs:', hatPaymentEditedTxs);
console.log('πŸš€ ~ smartAccountTxs:', smartAccountTxs);
console.log('πŸš€ ~ removeHatTxs:', removeHatTxs);
const proposalTransactions = {
targets: [
...createAndMintHatsTxs.map(() => hatsProtocol),
Expand Down

0 comments on commit cddd759

Please sign in to comment.