Skip to content

Commit ddfad5e

Browse files
ci: apply automated fixes
1 parent 79f3721 commit ddfad5e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

src/components/FrameworkCodeBlock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ export function FrameworkCodeBlock({
7777
</Tabs>
7878
</div>
7979
)
80-
}
80+
}

src/components/PackageManagerTabs.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ import { CodeBlock } from './CodeBlock'
77
import type { Framework } from '~/libraries/types'
88

99
type PackageManager = 'bun' | 'npm' | 'pnpm' | 'yarn'
10-
type InstallMode = 'install' | 'dev-install' | 'local-install' | 'create' | 'custom'
10+
type InstallMode =
11+
| 'install'
12+
| 'dev-install'
13+
| 'local-install'
14+
| 'create'
15+
| 'custom'
1116

1217
// Use zustand for cross-component synchronization
1318
// This ensures all PackageManagerTabs instances on the page stay in sync

src/utils/markdown/plugins/transformTabsComponent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,4 @@ export function transformTabsComponent(node: HastNode) {
468468
'data-attributes': JSON.stringify({ tabs: result.tabs }),
469469
}
470470
node.children = panelElements
471-
}
471+
}

0 commit comments

Comments
 (0)