Skip to content

Commit 7b247e3

Browse files
committed
updated metadata for tab text and possible reward panel fix
1 parent 0f91540 commit 7b247e3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/constants/routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ export enum MobileSettingsRoute {
4545
export const BASE_ROUTE = import.meta.env.VITE_ROUTER_TYPE === 'hash' ? '/#' : '';
4646
export const TRADE_ROUTE = `${AppRoute.Trade}/:market`;
4747
export const DEFAULT_TRADE_ROUTE = `${AppRoute.Trade}/${DEFAULT_MARKETID}`;
48-
export const DEFAULT_DOCUMENT_TITLE = 'dYdX';
48+
export const DEFAULT_DOCUMENT_TITLE = 'BONKtrade';

src/pages/token/LaunchIncentivesPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import tw from 'twin.macro';
88
import { ButtonAction } from '@/constants/buttons';
99
import { DialogTypes } from '@/constants/dialogs';
1010
import { STRING_KEYS } from '@/constants/localization';
11-
import { isDev } from '@/constants/networks';
1211
import { TOKEN_DECIMALS } from '@/constants/numbers';
1312
import { StatsigFlags } from '@/constants/statsig';
1413

@@ -45,8 +44,9 @@ export const LaunchIncentivesPanel = ({ className }: { className?: string }) =>
4544
dispatch(markLaunchIncentivesSeen());
4645
}, [dispatch]);
4746

47+
// NOTE: may need to remove this ff check all together
4848
const isSept2025RewardsBase = useStatsigGateValue(StatsigFlags.ffSeptember2025Rewards);
49-
const isSept2025Rewards = isDev ? true : isSept2025RewardsBase;
49+
const isSept2025Rewards = isSept2025RewardsBase;
5050
if (isSept2025Rewards) {
5151
return <September2025RewardsPanel />;
5252
}

template.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
<!-- TODO: update site meta tags -->
2-
<!DOCTYPE html>
1+
<!-- TODO: update og image -->
2+
<!doctype html>
33
<html lang="en">
44
<head>
55
<meta charset="UTF-8" />
66
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
88
<meta name="color-scheme" content="dark light" />
99
<meta name="apple-itunes-app" content="app-id=%VITE_APPLE_APP_ID%" />
10-
<title>bonk.trade - powered by dYdX</title>
10+
<title>BONKtrade - powered by dYdX</title>
1111
<meta name="twitter:card" content="summary_large_image" />
12-
<meta name="twitter:site" content="@dYdX" />
13-
<meta name="twitter:creator" content="@dYdX" />
12+
<meta name="twitter:site" content="@bonk_inu" />
13+
<meta name="twitter:creator" content="@bonk_inu" />
1414
<meta property="og:url" content="%VITE_BASE_URL%" />
1515
<meta property="og:type" content="website" />
1616
<meta property="og:image" content="%VITE_BASE_URL%/og-image.png" />
17-
<meta property="og:image:alt" content="dYdX" />
17+
<meta property="og:image:alt" content="BONKtrade" />
1818
<meta property="og:image:type" content="image/png" />
1919
<meta property="og:image:width" content="2400" />
2020
<meta property="og:image:height" content="1260" />
2121
<meta property="og:locale" content="en_US" />
22-
<meta property="og:site_name" content="dYdX" />
23-
<meta name="robots" content="%VITE_ROBOTS%">
22+
<meta property="og:site_name" content="BONKtrade" />
23+
<meta name="robots" content="%VITE_ROBOTS%" />
2424
<script>
2525
if (typeof globalThis === 'undefined') {
2626
(function () {

0 commit comments

Comments
 (0)