Skip to content

Commit

Permalink
add lesson steps to total stats
Browse files Browse the repository at this point in the history
  • Loading branch information
jakmeier committed Sep 9, 2024
1 parent 8d85b8c commit 199e086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bouncy_frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</script>

<!-- Switch between stable and unstable HomeFeed -->
{#if $version > 0.005}
{#if $version >= 0.005}
<HomeFeedA featuredDances={data.officialDances} />
{:else}
<HomeFeedB {featuredDance} />
Expand Down
4 changes: 2 additions & 2 deletions bouncy_frontend/src/routes/UserContext.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
if (stored && !stored.userLessonProgress) {
stored.userLessonProgress = {};
}
if (stored && !stored.consentSendingStats === undefined) {
if (stored && stored.consentSendingStats === undefined) {
stored.consentSendingStats = false;
}
if (stored && !stored.experimentalFeatures === undefined) {
if (stored && stored.experimentalFeatures === undefined) {
stored.experimentalFeatures = false;
}
/** @type {import('svelte/store').Writable<UserData>} */
Expand Down

0 comments on commit 199e086

Please sign in to comment.