Skip to content

Commit

Permalink
chore(bend): removed todo
Browse files Browse the repository at this point in the history
  • Loading branch information
bearpong committed Sep 6, 2024
1 parent 4a9ae4d commit d48f63d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/lend/src/app/markets/[address]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ export default function Page({ params }: { params: { address: Address } }) {
return <IndividualMarketAnalytics address={params.address} />;
}

export async function generateStaticParams() {
// TODO: is there any dynamic source of addresses?
export function generateStaticParams() {
const addresses = [honeyTokenAddress];
return addresses.map((address) => ({
address,
Expand Down

0 comments on commit d48f63d

Please sign in to comment.