Skip to content

feat(site): add support for weekly data on template insights #9997

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

Merged
merged 20 commits into from
Oct 3, 2023
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update site/src/pages/TemplatePage/TemplateInsightsPage/TemplateInsig…
…htsPage.tsx

Co-authored-by: Kayla Washburn <mckayla@hey.com>
  • Loading branch information
BrunoQuaresma and aslilac authored Oct 3, 2023
commit 8a8453c3324e4ec88a41b3b9397c871bb086fc03
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,10 @@ const ActiveUsersPanel = ({
{data && data.length > 0 && (
<ActiveUserChart
interval={interval}
data={data.map((d) => {
return {
amount: d.active_users,
date: d.start_time,
};
})}
data={data.map((d) => ({
amount: d.active_users,
date: d.start_time,
}))}
/>
)}
</PanelContent>
Expand Down