chore(dashboard-v2): cleanup console.log call

This commit is contained in:
Michał Leszczyk 2022-04-14 18:41:20 +02:00
parent 77d3145c0b
commit d6fe2d2f1d
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
1 changed files with 0 additions and 1 deletions

View File

@ -10,7 +10,6 @@ export default function useActivePlan(user) {
useEffect(() => {
if (user) {
console.log("setActivePlan");
setActivePlan(plans.find((plan) => plan.tier === user.tier));
}
}, [plans, user]);