Skip to content

Commit

Permalink
Add legal notice
Browse files Browse the repository at this point in the history
  • Loading branch information
andychase committed Jan 21, 2025
1 parent d318432 commit 0731773
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import { ErrorMessageDiv } from './ErrorMessageDiv';
import { SystemPrompt } from './SystemPrompt';
import { TemperatureSlider } from './Temperature';
import { Rules } from './Rules';
import { Notice } from './Notice';
import { MemoizedChatMessage } from './MemoizedChatMessage';
import { AdvancedSettings } from './AdvancedSettings';

Expand Down Expand Up @@ -421,6 +422,7 @@ export const Chat = memo(({ stopConversationRef }: Props) => {
{
//<ModelSelect />
}
<Notice />
<Rules isAdvancedOpen={showAdvanced} />
<AdvancedSettings
selectedConversation={selectedConversation}
Expand Down
28 changes: 28 additions & 0 deletions components/Chat/Notice.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { FC } from "react";

export const Notice: FC = () => {
return (
<div className="flex flex-col">
<label className="mb-2 text-left text-neutral-700 dark:text-neutral-400">
Legal Notice
</label>
<div
id="notice_section"
className={`p-4 border border-neutral-300 dark:border-neutral-600 text-neutral-700 rounded-md bg-neutral-100 dark:bg-neutral-800 overflow-y-auto transition-max-h duration-300`}
>
<ul>
<li>
<span>
If you are a litigation hold custodian, <b>do not input any information relating to a subject matter addressed in a litigation hold into the GovChat tool</b>.
To determine if you are a litigation hold custodian and to review your litigation holds, access your personal Relativity Legal Hold (RLH) custodian portal by locating the most recent email
from <a href="mailto:[email protected]" title="mailto:[email protected]" className="underline">[email protected]</a> with
the subject line “Global Notice – Relativity Legal Hold Reminder” sent to you within the past 90 days.
Follow the instructions in that email to access your RLH custodian portal. If you cannot locate that email or have any access issues,
send an email to <a href="mailto:[email protected]" title="mailto:[email protected]" className="underline">[email protected]</a>.
</span>
</li>
</ul>
</div>
</div>
);
}

0 comments on commit 0731773

Please sign in to comment.