Skip to content

Commit 9774af1

Browse files
committed
fixes
1 parent dd9e78f commit 9774af1

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.zed/settings.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,12 @@
22
//
33
// For a full list of overridable settings, and general information on folder-specific settings,
44
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
5-
{}
5+
{
6+
"languages": {
7+
"JavaScript": {
8+
"code_actions_on_format": {
9+
"source.fixAll.eslint": true
10+
}
11+
}
12+
}
13+
}

src/components/sections/grid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Grid = ({data}: Props) => {
1111
}
1212

1313
return (
14-
<div className={`grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4 items-center`}>
14+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4 items-center">
1515
{data?.items?.map((section) => <RenderSection key={section._key} section={section} />)}
1616
</div>
1717
);

0 commit comments

Comments
 (0)