Skip to content

Commit 4701bb1

Browse files
committed
Production debugging print statements
1 parent 8a38429 commit 4701bb1

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/components/Modals/AddContactModal.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ const AddContactModal = ({
6868
contacts,
6969
contactWebIds
7070
}) => {
71+
console.log('ENV.VITE_SUGGESTED_OIDC_OPTIONS:', ENV.VITE_SUGGESTED_OIDC_OPTIONS);
72+
7173
const { addNotification } = useNotification();
7274
const [userGivenName, setUserGivenName] = useState('');
7375
const [userFamilyName, setUserFamilyName] = useState('');

src/components/Profile/CreateQRCode.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {
2323
const CreateQRCode = ({ webId }) => {
2424
const [qrIconClicked, setQrIconClicked] = useState(false);
2525
const [docUrl, setDocUrl] = useState(null);
26+
console.log('webId:', webId);
2627

2728
const createQrCode = () => {
2829
setQrIconClicked(!qrIconClicked);

src/components/Signup/podSignupHelpers/initializePod.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const initializePod = async (
3131
{ caseManagerWebId, caseManagerFirstName, caseManagerLastName },
3232
fetch
3333
) => {
34+
console.log('caseManagerWebId:', caseManagerWebId);
3435
await createContainerAt(`${podUrl}PASS`, { fetch });
3536
let datasetWithAcl;
3637
let acl;

0 commit comments

Comments
 (0)