Skip to content

Commit

Permalink
Merge pull request #87 from AI4Bharat/v1.0
Browse files Browse the repository at this point in the history
APolicy Bullet Change
  • Loading branch information
Shanks0465 authored Sep 30, 2024
2 parents 01c10c5 + f269bce commit d46025f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/tools/[tool]/policy/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ export default function PolicyView({ params }: { params: { tool: string } }) {
<br />
{(val as any).bullets ? (
<>
{(val as any).bullets.map((idx: number, bullet: string) => (
<li key={idx}>{bullet}</li>
{(val as any).bullets.map((bullet: string) => (
<li key={bullet}>{bullet}</li>
))}
</>
) : (
Expand Down

0 comments on commit d46025f

Please sign in to comment.