Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
comment out tabs on explore to facilitate testing
Browse files Browse the repository at this point in the history
  • Loading branch information
hcientist committed Feb 6, 2024
1 parent f7e1a18 commit 2d27251
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions components/student/create/explore.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,14 +302,14 @@ export default function CreativityActivity() {
Begin Composing
</Button>

<Tabs
{/* <Tabs
defaultActiveKey="tonic-palette"
id="justify-tab-example"
className="mb-3"
justify
variant="underline"
>
<Tab eventKey="tonic-palette" title={`Tonic ${selectedTonicMeasure}`} className="tonic">
<Tab eventKey="tonic-palette" title={`Tonic ${selectedTonicMeasure}`} className="tonic"> */}
{tonicJson && (
<VariationsFromMotiveScore
referenceScoreJSON={tonicJson}
Expand All @@ -318,12 +318,12 @@ export default function CreativityActivity() {
onSelect={setSelectedTonicMeasure}
/>
)}
</Tab>
{/* </Tab>
<Tab
eventKey="subdominant-palette"
title={`Subdominant ${selectedSubdominantMeasure}`}
className="subdominant"
>
> */}
{subdominantJson && (
<VariationsFromMotiveScore
referenceScoreJSON={subdominantJson}
Expand All @@ -332,8 +332,8 @@ export default function CreativityActivity() {
onSelect={setSelectedSubdominantMeasure}
/>
)}
</Tab>
<Tab eventKey="dominant-palette" title={`Dominant ${selectedDominantMeasure}`} className="dominant">
{/* </Tab>
<Tab eventKey="dominant-palette" title={`Dominant ${selectedDominantMeasure}`} className="dominant"> */}
{dominantJson && (
<VariationsFromMotiveScore
referenceScoreJSON={dominantJson}
Expand All @@ -342,8 +342,8 @@ export default function CreativityActivity() {
onSelect={setSelectedDominantMeasure}
/>
)}
</Tab>
</Tabs>
{/* </Tab>
</Tabs> */}


<FlatEditor
Expand Down

0 comments on commit 2d27251

Please sign in to comment.