Skip to content

Commit 14717e3

Browse files
committed
fix js docs
1 parent c9f54ba commit 14717e3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packages/js/src/ai-content-planner/components/content-suggestions-modal.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,12 @@ const LoadingModalContent = () => (
9696
/**
9797
* ContentSuggestionsModal component.
9898
*
99-
* @param {boolean} isOpen Whether the modal is open or not.
100-
* @param {Function} onClose The function to call when the modal should be closed.
101-
* @param {boolean} isLoading Whether the content suggestions are being generated.
102-
* @param {boolean} isPremium Whether the user has a premium add-on is activated or not.
103-
* @param {Suggestion[]} suggestions The content suggestions to display in the modal.
99+
* @param {Object} props The component props.
100+
* @param {boolean} props.isOpen Whether the modal is open or not.
101+
* @param {Function} props.onClose The function to call when the modal should be closed.
102+
* @param {boolean} props.isLoading Whether the content suggestions are being generated.
103+
* @param {boolean} props.isPremium Whether the user has a premium add-on is activated or not.
104+
* @param {Suggestion[]} props.suggestions The content suggestions to display in the modal.
104105
*
105106
* @returns {JSX.Element} The ContentSuggestionsModal component.
106107
*/

0 commit comments

Comments
 (0)