Skip to content

Commit

Permalink
Add terms last updated to config and policies
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagofilipenunes committed May 13, 2024
1 parent 5a7f947 commit a8e65ec
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/config/ethereum/common.ts
Expand Up @@ -33,6 +33,7 @@ export const commonConfig: AppConfig = {
],
walletConnectProjectId: 'f9d8863ab6c03f2293d7d56d7c0c0853',
isSimulatorEnabled: true,
policiesLastUpdated: '18 April, 2023',
network: {
name: 'Ethereum Network',
logoUrl: IconETHLogo,
Expand Down
1 change: 1 addition & 0 deletions src/config/sei/common.ts
Expand Up @@ -17,6 +17,7 @@ export const commonConfig: AppConfig = {
selectableConnectionTypes: ['injected', 'coinbaseWallet'],
walletConnectProjectId: '',
isSimulatorEnabled: false,
policiesLastUpdated: '21 May, 2024',
network: {
name: 'Sei Devnet',
logoUrl: IconSeiLogo,
Expand Down
1 change: 1 addition & 0 deletions src/config/types.ts
Expand Up @@ -9,6 +9,7 @@ export interface AppConfig {
walletConnectProjectId: string;
isSimulatorEnabled: boolean;
sentryDSN?: string;
policiesLastUpdated?: string;
network: {
name: string;
logoUrl: string;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/privacy/index.tsx
Expand Up @@ -576,7 +576,7 @@ export const PrivacyPage = () => {
return (
<Page title={'Privacy Policy'}>
<>
<span>Last updated: 18 April, 2023</span>
<span>Last updated: {config.policiesLastUpdated}</span>
<p>
if you have not reviewed THIS PRIVACY POLICY since the “last updated”
date above, It is your responsibility to re-review IT.
Expand Down Expand Up @@ -624,7 +624,7 @@ export const PrivacyPage = () => {

{content.map((item, index) => (
<div key={index} className="legal pt-10">
<h2 className="font-semibold mb-10 text-[20px]">{item.subtitle}</h2>
<h2 className="mb-10 text-[20px] font-semibold">{item.subtitle}</h2>
<div className="mb-20 text-[16px]">{item.html}</div>
</div>
))}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/terms/index.tsx
Expand Up @@ -1055,7 +1055,7 @@ export const TermsPage = () => {
return (
<Page title="Terms of Use">
<>
<span>Last updated: 18 April, 2023</span>
<span>Last updated: {config.policiesLastUpdated}</span>
<p>
PLEASE READ THESE TERMS OF USE CAREFULLY. YOUR ACCEPTANCE MAY LIMIT OR
WAIVE CERTAIN OF YOUR RIGHTS. IF YOU HAVE NOT REVIEWED THE TERMS OF
Expand Down

0 comments on commit a8e65ec

Please sign in to comment.