Skip to content

Commit b8bf2bf

Browse files
committed
Fix lint
1 parent 52e38ce commit b8bf2bf

File tree

1 file changed

+2
-2
lines changed
  • packages/react/src/types/props/selector

1 file changed

+2
-2
lines changed

packages/react/src/types/props/selector/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ type PascalCase<S extends string> = Capitalize<CamelCase<S>>
1515

1616
export type SelectorProps<T = DevupProps> = ResponsiveValue<T | string | false>
1717
export type DevupThemeSelectorProps = keyof DevupTheme extends undefined
18-
? Record<`_theme${string}`, SelectorProps>
19-
: Record<`_theme${PascalCase<keyof DevupTheme>}`, SelectorProps>
18+
? Partial<Record<`_theme${string}`, SelectorProps>>
19+
: Partial<Record<`_theme${PascalCase<keyof DevupTheme>}`, SelectorProps>>
2020

2121
type NormalSelector = Exclude<
2222
Pseudos,

0 commit comments

Comments
 (0)