-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demo button upgrades #564
Demo button upgrades #564
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple small things but overall LGTM!
@@ -10,6 +10,7 @@ export function TrackingBoardPage(): ReactElement { | |||
useEffect(() => { | |||
const availableStates = | |||
user?.profileResource && allLicensesForPractitioner(user.profileResource).map((item) => item.state); | |||
console.log(availableStates, 'availableStates'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you want this console log here?
@@ -98,6 +105,10 @@ const CreateDemoVisits = (): ReactElement => { | |||
<Typography variant="h6" color="primary.main"> | |||
Lack of test data? Create demo visits | |||
</Typography> | |||
{/* <Typography variant="body2" color="text.secondary"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you want this comment here?
#548