Skip to content

Commit 33b3a79

Browse files
[hotkey]
1 parent c7c65b2 commit 33b3a79

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

.claude/settings.local.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"permissions": {
33
"allow": [
4-
"WebFetch(domain:tinywow.com)"
4+
"WebFetch(domain:tinywow.com)",
5+
"Bash(pnpm run:*)"
56
],
67
"deny": []
78
}

app/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const tools = [
4343
href: "/tools/csv-combiner",
4444
tags: ["csv", "merge", "data"],
4545
isNew: true,
46+
isPopular: false,
4647
},
4748
{
4849
id: "json-to-csv",
@@ -53,6 +54,7 @@ const tools = [
5354
href: "/tools/json-to-csv",
5455
tags: ["json", "csv", "convert"],
5556
isNew: true,
57+
isPopular: true,
5658
},
5759
{
5860
id: "character-counter",
@@ -63,6 +65,7 @@ const tools = [
6365
href: "/tools/character-counter",
6466
tags: ["text", "count", "words"],
6567
isNew: true,
68+
isPopular: true,
6669
},
6770
];
6871

@@ -230,7 +233,7 @@ export default function HomePage() {
230233
Need a specific tool?
231234
</h2>
232235
<p className="mb-8 text-lg text-muted-foreground">
233-
We're constantly adding new tools. Let us know what you need!
236+
We&apos;re constantly adding new tools. Let us know what you need!
234237
</p>
235238
<Button size="lg" className="group">
236239
Request a Tool

app/tools/csv-combiner/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export default function CSVCombinerPage() {
226226
className="h-4 w-4"
227227
/>
228228
<label htmlFor="includeHeaders" className="text-sm">
229-
Include headers from all files (uncheck to use only first file's header)
229+
Include headers from all files (uncheck to use only first file&apos;s header)
230230
</label>
231231
</div>
232232

@@ -305,7 +305,7 @@ export default function CSVCombinerPage() {
305305
<li>Click the upload area or drag and drop your CSV files</li>
306306
<li>Upload multiple CSV files that you want to combine</li>
307307
<li>Choose whether to include headers from all files or just the first one</li>
308-
<li>Click "Combine Files" to merge all uploaded CSV files</li>
308+
<li>Click &quot;Combine Files&quot; to merge all uploaded CSV files</li>
309309
<li>Preview the combined data in the right panel</li>
310310
<li>Download your combined CSV file</li>
311311
</ol>

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
}
2424
},
2525
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26-
"exclude": ["node_modules"]
26+
"exclude": ["node_modules", "serp-blocks"]
2727
}

0 commit comments

Comments
 (0)