Skip to content

Commit 1f0d908

Browse files
committed
fix: run npm run format
1 parent 05ed96f commit 1f0d908

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

packages/components/tsconfig.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
"jsx": "react-jsx",
88
"baseUrl": "."
99
},
10-
"include": [
11-
"src/index.tsx",
12-
"src/**/*.ts",
13-
"src/**/*.tsx",
14-
],
10+
"include": ["src/index.tsx", "src/**/*.ts", "src/**/*.tsx"],
1511
"exclude": ["node_modules", "dist"]
1612
}

packages/web/src/components/onboarding.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ const OnboardingModal: React.FunctionComponent<OnboardingModalProps> = () => {
1515
<div className="flex flex-col md:flex-row gap-6">
1616
<div
1717
className="p-5 rounded-lg bg-[#FFD9E1]"
18-
style={{ background: 'linear-gradient(270deg, rgba(255,217,225,1) 0%, rgba(219,183,223,1) 100%)' }}
18+
style={{
19+
background:
20+
'linear-gradient(270deg, rgba(255,217,225,1) 0%, rgba(219,183,223,1) 100%)',
21+
}}
1922
>
2023
<div className="flex items-center mb-6">
2124
<LayoutGridIcon size={24} className="text-ai-btn" />

0 commit comments

Comments
 (0)