chore(dashboard-v2): cleanup console.log call
This commit is contained in:
parent
77d3145c0b
commit
d6fe2d2f1d
|
@ -10,7 +10,6 @@ export default function useActivePlan(user) {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (user) {
|
if (user) {
|
||||||
console.log("setActivePlan");
|
|
||||||
setActivePlan(plans.find((plan) => plan.tier === user.tier));
|
setActivePlan(plans.find((plan) => plan.tier === user.tier));
|
||||||
}
|
}
|
||||||
}, [plans, user]);
|
}, [plans, user]);
|
||||||
|
|
Reference in New Issue