Skip to content

Commit

Permalink
lint: fix more types
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Sep 19, 2023
1 parent 1ca0fa9 commit 38cac4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contexts/MapProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const MapContext = createContext(null);

/**
* @param {Object} props
* @param {JSX.Element} props.children
* @param {import('react').ReactNode} props.children
* @returns {JSX.Element}
*/
export default function MapProvider({ children }) {
Expand Down
2 changes: 1 addition & 1 deletion src/utah-design-system/Button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function getOneSizeSmaller(size) {
* @param {Object} props
* @param {keyof typeof APPEARANCES} [props.appearance]
* @param {boolean} [props.busy]
* @param {JSX.Element} props.children
* @param {import('react').ReactNode} props.children
* @param {import('tailwind-merge').ClassNameValue} [props.className]
* @param {keyof typeof COLORS} [props.color]
* @param {boolean} [props.disabled]
Expand Down

0 comments on commit 38cac4e

Please sign in to comment.