Skip to content

Commit

Permalink
APolicy Bullet Change
Browse files Browse the repository at this point in the history
  • Loading branch information
Shanks0465 committed Sep 30, 2024
1 parent 66afdb4 commit f269bce
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 f269bce

Please sign in to comment.