2
0

fix(embed): 📝 Improve popup delay builder

This commit is contained in:
Baptiste Arnaud
2022-05-23 12:15:15 -07:00
parent 37dea9c403
commit 62b77e4905
10 changed files with 42 additions and 29 deletions

View File

@ -41,7 +41,7 @@ const StandardInstructions = () => (
)
const PopupInstructions = () => {
const [inputValue, setInputValue] = useState(0)
const [inputValue, setInputValue] = useState<number>()
return (
<OrderedList spacing={2} mb={4}>
@ -52,7 +52,7 @@ const PopupInstructions = () => {
Add an <Tag>embed</Tag> element from the <Tag>components</Tag>
section and paste this code:
<PopupEmbedSettings
onUpdateSettings={(settings) => setInputValue(settings.delay ?? 0)}
onUpdateSettings={(settings) => setInputValue(settings.delay)}
my={4}
/>
<PopupEmbedCode delay={inputValue} mt={4} />