Skip to content

Commit eafa70e

Browse files
chore(coachmark): remove html wrapper in favor of content array
1 parent 3547bf7 commit eafa70e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/coachmark/stories/template.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,16 +139,16 @@ export const CoachmarkMenuStatesTemplate = (args, context) => Container({
139139
columnGap: "100px",
140140
rowGap: "200px",
141141
},
142-
content: html`
143-
${Container({
142+
content: [
143+
Container({
144144
withBorder: false,
145145
heading: "With action menu",
146146
content: Template({...args, isOpen: true}, context),
147-
})}
148-
${Container({
147+
}),
148+
Container({
149149
withBorder: false,
150150
heading: "Without action menu",
151151
content: Template({...args, hasActionMenu: false}, context),
152-
})}
153-
`
152+
})
153+
]
154154
});

0 commit comments

Comments
 (0)