Skip to content

Commit

Permalink
feat: text change
Browse files Browse the repository at this point in the history
  • Loading branch information
lance10030 committed Aug 21, 2024
1 parent ab05244 commit 20579f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Charts/InprogressChart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const InprogressChart: FC<Partial<DailyAmountChartProps>> = ({
],
...opts,
};
return <ChartCard title="Bond Inprogress" size="sm" options={options} />;
return <ChartCard title="Daily Bond Inprogress" size="sm" options={options} />;
};

export default InprogressChart;
2 changes: 1 addition & 1 deletion src/utils/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export type Network = 'mainnet' | 'sepolia' | 'base-sepolia'
export const EXPLORER_L1 = process.env.NEXT_PUBLIC_L1_EXPLORER || 'https://sepolia.etherscan.io'
export const EXPLORER_L2 = process.env.NEXT_PUBLIC_L2_EXPLORER || 'https://sepolia-optimism.etherscan.io'
export const network = process.env.NEXT_PUBLIC_NETWORK as Network || 'sepolia'
export const ApiDoc = process.env.NEXT_API_DOC || ''
export const ApiDoc = process.env.NEXT_PUBLIC_API_DOC || ''

export const SuperProofUrls: Record<Network, string> = {
'mainnet': process.env.NEXT_PUBLIC_OP_MAINNET_URL || '',
Expand Down

0 comments on commit 20579f2

Please sign in to comment.