Skip to content

Commit

Permalink
fix: upgrade dependencies to fix vulnerabilities (#33279)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmoura authored Nov 26, 2024
1 parent c814fe6 commit 34423d6
Show file tree
Hide file tree
Showing 4 changed files with 184 additions and 122 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@
"swc-loader": "^0.2.6",
"prettier": "2.8.8",
"puppeteer": "19.6.0",
"@microsoft/api-extractor/typescript": "5.2.2"
"@microsoft/api-extractor/typescript": "5.2.2",
"ws": "8.17.1"
},
"nx": {
"includedScripts": []
Expand Down
2 changes: 1 addition & 1 deletion packages/fluentui/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"react-dom": "17.0.2",
"react-hook-form": "^5.7.2",
"react-hot-loader": "^4.13.0",
"react-markdown": "^4.0.8",
"react-markdown": "^6.0.3",
"react-router-dom": "^5.2.0",
"react-source-render": "4.0.0-1",
"react-textarea-autosize": "7.0.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import * as React from 'react';
import * as ReactMarkdown from 'react-markdown';

const InlineMarkdown: React.FunctionComponent<{ value: string }> = ({ value }) => <ReactMarkdown source={value} />;
const InlineMarkdown: React.FunctionComponent<{ value: string }> = ({ value }) => (
<ReactMarkdown>{value}</ReactMarkdown>
);

export default InlineMarkdown;
Loading

0 comments on commit 34423d6

Please sign in to comment.