Skip to content

Commit

Permalink
refactor: readded this initial code change
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Dec 17, 2024
1 parent 8891ee7 commit dcdd349
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/foundations/scripts/local/generate-icon-overview.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/no-unsafe-call */

/*
* This script can be used to update the icon overview for foundation testing.
*/
Expand Down Expand Up @@ -32,8 +30,10 @@ const generateIconOverview = () => {
<body>
<div class="icons-overview-container">
${ALL_ICONS.map(
(icon) => `
${
/* eslint-disable-next-line @typescript-eslint/no-unsafe-call */
ALL_ICONS.map(
(icon) => `
<div data-spacing="small" class="db-card">
<span
aria-hidden="true"
Expand All @@ -47,7 +47,8 @@ data-semantic="informational"
>${icon}</span
>
</div>`
).join('\n')}
).join('\n')
}
</div>
</body>
</html>`;
Expand Down

0 comments on commit dcdd349

Please sign in to comment.