mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-24 20:03:41 +03:00
0d70ad4362
Issue: https://github.com/StanGirard/quivr/issues/1424 https://github.com/StanGirard/quivr/assets/63923024/a64b7456-6efc-40e6-9f0a-89552a372e0a
18 lines
529 B
TypeScript
18 lines
529 B
TypeScript
import { SecurityQuestion } from "../types";
|
|
|
|
export const securityQuestionsExamples: SecurityQuestion[] = [
|
|
{
|
|
question: "Do you send my data to third-parties?",
|
|
answer: "No, we don't send your data to third-parties.",
|
|
},
|
|
{ question: "Do I need to download anything?", answer: "No." },
|
|
{
|
|
question: "Can you see documents I upload?",
|
|
answer: "No, we can't see documents you upload.",
|
|
},
|
|
{
|
|
question: "Is my data end-to-end encrypted?",
|
|
answer: "Yes, your data is end-to-end encrypted.",
|
|
},
|
|
];
|