Skip to content

Commit

Permalink
[FX-4635] Fix data-private type
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrl committed Dec 12, 2023
1 parent 69e0e15 commit f89b48c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .changeset/tidy-jokes-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@toptal/picasso': patch
'@toptal/picasso-shared': patch
---

### picasso-shared types

- fixed `data-private` type to be mistakenly `string` instead of `boolean`
2 changes: 1 addition & 1 deletion packages/shared/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface BaseProps {
/** Style applied to root element */
style?: CSSProperties
'data-testid'?: string
'data-private'?: string
'data-private'?: boolean
}

export interface JssProps {
Expand Down

0 comments on commit f89b48c

Please sign in to comment.