mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
https://linear.app/unleash/issue/2-2853/add-a-disclaimer-to-the-unleash-ai-chat-window Adds a small, initial disclaimer to Unleash AI chat. 
20 lines
551 B
TypeScript
20 lines
551 B
TypeScript
import { styled } from '@mui/material';
|
|
|
|
const StyledDisclaimer = styled('aside')(({ theme }) => ({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
textAlign: 'center',
|
|
width: '100%',
|
|
color: theme.palette.secondary.dark,
|
|
fontSize: theme.fontSizes.smallerBody,
|
|
marginBottom: theme.spacing(2),
|
|
}));
|
|
|
|
export const AIChatDisclaimer = () => (
|
|
<StyledDisclaimer>
|
|
By using this assistant you accept that all data you share in this chat
|
|
can be shared with OpenAI
|
|
</StyledDisclaimer>
|
|
);
|