Skip to content

Commit

Permalink
refactor: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Dec 11, 2024
1 parent 5d380d3 commit 60909d1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/foundations/scripts/local/generate-icon-overview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ const generateIconOverview = () => {
<body>
<div class="icons-overview-container">
${// eslint-disable-next-line @typescript-eslint/no-unsafe-call
${
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
ALL_ICONS.map(
(icon) => `
(icon) => `
<div data-spacing="small" class="db-card">
<span
aria-hidden="true"
Expand All @@ -46,7 +47,8 @@ data-semantic="informational"
>${icon}</span
>
</div>`
).join('\n')}
).join('\n')
}
</div>
</body>
</html>`;
Expand Down

0 comments on commit 60909d1

Please sign in to comment.