diff --git a/package.json b/package.json index 4af761a..0291885 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "2026.es.pycon.org", - "version": "1.17.5", + "version": "1.17.6", "description": "", "main": "index.js", "scripts": { diff --git a/src/components/JobsPage.astro b/src/components/JobsPage.astro index 28c4acb..99109be 100644 --- a/src/components/JobsPage.astro +++ b/src/components/JobsPage.astro @@ -12,7 +12,7 @@ const t = jobsTexts[(lang || 'es') as keyof typeof jobsTexts] const menuT = menuTexts[(lang || 'es') as keyof typeof menuTexts] const locale = (lang || 'es') as TLocale -const jobModules = Object.values(import.meta.glob('../data/jobs/!(_*).md', { eager: true })) as { +const jobModules = Object.values(import.meta.glob(['../data/jobs/*.md'], { eager: true })) as { frontmatter: IJob }[]