Skip to content

Commit ae54895

Browse files
committed
feat(roadmap): bun format fix
1 parent f9e0531 commit ae54895

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

β€Žsrc/components/RoadmapBoard.astroβ€Ž

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ const LINEAR_ICON_EMOJI: Record<string, string> = {
4848
Stadium: '🏟️',
4949
Surfer: 'πŸ„',
5050
Users: 'πŸ‘₯',
51-
Write: '✍️',
51+
Write: '✍️'
5252
}
5353
5454
// Slack-style shortcode β†’ Unicode emoji (as returned by the Linear API)
5555
const SLACK_EMOJI: Record<string, string> = {
5656
':flag-ca:': 'πŸ‡¨πŸ‡¦',
5757
':flag-eu:': 'πŸ‡ͺπŸ‡Ί',
5858
':flag-za:': 'πŸ‡ΏπŸ‡¦',
59-
':us:': 'πŸ‡ΊπŸ‡Έ',
59+
':us:': 'πŸ‡ΊπŸ‡Έ'
6060
}
6161
6262
function resolveIcon(icon: string | null | undefined): string | null {
@@ -217,7 +217,6 @@ const PROJECT_ROW_OFFSET = 3
217217
Every cell has explicit grid-column + grid-row to avoid auto-placement bugs.
218218
-->
219219
<div class="board" style={`--n-months: ${nMonths}; --now-pct: ${nowLeft}%`}>
220-
221220
<!-- ── col 1, rows 1–2: "Project" label spans both header rows ── -->
222221
<div class="hd-label" style="grid-column: 1; grid-row: 1 / 3">
223222
Project
@@ -248,8 +247,7 @@ const PROJECT_ROW_OFFSET = 3
248247
class:list={[
249248
'hd-month',
250249
{
251-
'hd-month--current':
252-
m.year === nowYear && m.month === nowMonth
250+
'hd-month--current': m.year === nowYear && m.month === nowMonth
253251
},
254252
{ 'hd-month--qstart': m.isQuarterStart }
255253
]}

0 commit comments

Comments
Β (0)