Skip to content

Commit 170ee94

Browse files
Run prettier
1 parent 7dfd2b6 commit 170ee94

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"dev": "next dev --turbopack",
77
"build": "next build",
88
"start": "next start",
9-
"lint": "next lint"
9+
"lint": "next lint",
10+
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,mdx}\""
1011
},
1112
"dependencies": {
1213
"@docsearch/react": "^3.8.2",

src/docs/flex.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const description = "Utilities for controlling how flex items both grow a
1515
["flex-initial", "flex: 0 1 auto;"],
1616
["flex-none", "flex: none;"],
1717
["flex-[<value>]", "flex: <value>;"],
18-
["flex-[<custom-property>]", "flex: var(<custom-property>);"]
18+
["flex-[<custom-property>]", "flex: var(<custom-property>);"],
1919
]}
2020
/>
2121

0 commit comments

Comments
 (0)