Skip to content

Commit

Permalink
fix: TableThemeProvider props
Browse files Browse the repository at this point in the history
  • Loading branch information
schummar committed Mar 20, 2023
1 parent 2abb977 commit 8ecac09
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ export {
today,
commonQuickOptions,
lastDays,
lastSevenDays,
lastThirtyDays,
thisMonth,
thisYear,
} from './components/datePicker';
Expand Down
2 changes: 1 addition & 1 deletion src/theme/tableTheme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function TableThemeProvider({
children,
}: {
theme: PartialTableTheme;
children: ReactNode;
children?: ReactNode;
}) {
return <TableThemeContext.Provider value={theme}>{children}</TableThemeContext.Provider>;
}
Expand Down

0 comments on commit 8ecac09

Please sign in to comment.