We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e022867 commit 3dc3806Copy full SHA for 3dc3806
packages/mongodb-chatbot-ui/src/MongoDbLegal.tsx
@@ -34,10 +34,33 @@ export function MongoDbLegalDisclosureText() {
34
);
35
}
36
37
+export function MongoDbDataUsagePolicyText() {
38
+ const { tck } = useLinkData();
39
+ const DataUsagePolicy = () => (
40
+ <Link
41
+ hideExternalIcon
42
+ href={addQueryParams(
43
+ "https://www.mongodb.com/docs/ai-chatbot-data-usage/",
44
+ { tck }
45
+ )}
46
+ >
47
+ Data Usage Policy
48
+ </Link>
49
+ );
50
+ return (
51
+ <>
52
+ To learn more about how we use your data, please see our{" "}
53
+ <DataUsagePolicy />.
54
+ </>
55
56
+}
57
+
58
export function MongoDbLegalDisclosure() {
59
return (
60
<Body>
61
<MongoDbLegalDisclosureText />
62
+ <br />
63
+ <MongoDbDataUsagePolicyText />
64
</Body>
65
66
0 commit comments