Skip to content

Commit

Permalink
🛁 Cleanup: Ex - Test06
Browse files Browse the repository at this point in the history
Summary: Remove logging.

empty
  • Loading branch information
dominicstop committed Mar 8, 2023
1 parent 73c8a09 commit bf9aaf9
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions example/src/examples/Test06.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ export const ModalGroup = React.forwardRef<ModalGroupHandle, ModalGroupProps>(
key={`ModalView-${index}`}
containerStyle={styles.modalGroupModal}
ref={(_ref) => {
console.log(`ModalView-${index} - ref: `, _ref);
modalRefs.current[`${index}`] = _ref;
}}
>
Expand All @@ -177,12 +176,6 @@ export const ModalGroup = React.forwardRef<ModalGroupHandle, ModalGroupProps>(

const modalRef = modalRefs.current[`${nextModalIndex}`];

console.log('modalIndex: ', modalIndex);
console.log('nextModalIndex: ', nextModalIndex);
console.log('modalRefs - keys: ', Object.keys(modalRefs.current));
console.log('modalRefs: ', modalRefs.current);
console.log('modalRef: ', modalRef);

// guard
if (modalRef == null) {
return;
Expand Down

0 comments on commit bf9aaf9

Please sign in to comment.