Skip to content

Commit e4c7ffd

Browse files
committed
Merge branch 'main' into implement-radix-tabs
2 parents 0164211 + 6a12440 commit e4c7ffd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

stories/compdem/client-participation/CivicTechTO/SelectionWidgetV2.stories.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { withParticipationThemeUi } from '../../../../.storybook/decorators'
77
import TidCarouselV2Animated from './TidCarouselV2Animated'
88
import TidCarouselV2Static from './TidCarouselV2Static'
99
import CurateV2 from './CurateV2'
10+
import ExploreTid from '../../../../codebases/compdem/client-participation/vis2/components/exploreTid'
1011

1112
const mathResult = getMath()
1213
const commentsData = getComments()
@@ -63,6 +64,12 @@ const SelectionWidgetV2 = React.forwardRef(({isStatic, isAccessible, math}, ref)
6364
allComments={commentsData}
6465
commentsToShow={commentsToShow}
6566
/>
67+
<ExploreTid
68+
math={mathResult}
69+
selectedComment={selectedComment}
70+
selectedTidCuration={selectedTidCuration}
71+
Strings={Strings}
72+
/>
6673
</div>
6774
)
6875
})

stories/compdem/client-participation/CivicTechTO/TidCarouselV2Static.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ const TidCarouselV2Static = React.forwardRef(({
7272
</Tabs.Trigger>
7373
))}
7474
</Tabs.List>
75-
{commentsToShowTids.map(tid => (
75+
{/* {commentsToShowTids.map(tid => (
7676
<Tabs.Content key={tid} value={`statement-${tid}`}>Statement {tid}...</Tabs.Content>
77-
))}
77+
))} */}
7878
</Tabs.Root>
7979
</div>
8080
)

0 commit comments

Comments
 (0)