Skip to content

Commit 6f646d9

Browse files
committed
DEBUG
1 parent 621fa58 commit 6f646d9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

components/dashboard/src/settings/Account.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { PaymentContext } from "../payment-context";
1717
export default function Account() {
1818
const { user } = useContext(UserContext);
1919
const { showPaymentUI } = useContext(PaymentContext);
20+
console.log('showPaymentUI', showPaymentUI);
2021

2122
const [modal, setModal] = useState(false);
2223
const [typedEmail, setTypedEmail] = useState('');

components/dashboard/src/teams/TeamPlans.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export default function TeamPlans() {
2121
const team = getCurrentTeam(location, teams);
2222
const [ members, setMembers ] = useState<TeamMemberInfo[]>([]);
2323
const { showPaymentUI, currency, setCurrency } = useContext(PaymentContext);
24+
console.log('members', members.length, 'showPaymentUI', showPaymentUI, 'currency', currency);
2425

2526
useEffect(() => {
2627
if (!team) {

0 commit comments

Comments
 (0)