Skip to content

Commit adefe02

Browse files
committed
fix: quitar async innecesario de App function en _app.tsx
1 parent 4093bc2 commit adefe02

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

.husky/pre-commit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
1+
# Husky pre-commit hook (v9 forward-compatible format)
2+
export PATH="$HOME/.deno/bin:$PATH"
33

44
echo "🔍 Running pre-commit checks (auto-formatting enabled)..."
55
deno task precommit

CLAUDE.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,15 @@ deno task prepare
117117

118118
**Deno no encontrado en hook:**
119119

120+
El hook `.husky/pre-commit` ya incluye `export PATH="$HOME/.deno/bin:$PATH"` para
121+
garantizar que Deno esté disponible. Si aún falla, verificar:
122+
120123
```bash
121-
# Verificar que Deno está en PATH
124+
# Verificar que Deno está instalado
122125
which deno
123126

124-
# Si no está, agregarlo a ~/.zshrc:
125-
export PATH="$HOME/.deno/bin:$PATH"
127+
# Si no está, instalarlo:
128+
curl -fsSL https://deno.land/install.sh | sh
126129
```
127130

128131
**Hook muy lento:**

locales/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
},
66
"index": {
77
"header": "Peter Wong • Constellar.ai",
8+
"title": "The Ultimate Guide to Vibe Coding",
89
"sections": [
910
{
1011
"title": "What Is Vibe Coding?",

locales/es.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"index": {
77
"header": "Peter Wong • Constellar.ai • Traducido por Midudev",
8-
8+
"title": "La Guía Definitiva del Vibe Coding",
99
"sections": [
1010
{
1111
"title": "¿Qué es el Vibe Coding?",

routes/[lang]/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function Home(
3939
{translations.index.header}
4040
</strong>
4141
</div>
42-
<SectionWrapperContent title="La Guía Definitiva del Vibe Coding">
42+
<SectionWrapperContent title={translations.index.title}>
4343
<section class="w-full gap-4 text-sm leading-sm">
4444
{translations.index.sections.map((section) => (
4545
<Fragment key={section.title}>

0 commit comments

Comments
 (0)