Merge pull request #297 from reuters-graphics/mf-scroller-quikfix

Allows `step.background` to be undefined
This commit is contained in:
MinamiFunakoshiTR 2025-05-06 10:22:14 -05:00 committed by GitHub
commit f7a5cf46e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@reuters-graphics/graphics-components': patch
---
Allows step.background to be undefined

View file

@ -31,7 +31,7 @@ export interface ScrollerStep {
/**
* A background component
*/
background: Component;
background: Component | undefined;
/**
* Optional props for background component
*/