Skip to content

Commit

Permalink
fix for random errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanazf committed Nov 12, 2024
1 parent 4fed33a commit 5c01e99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.8",
"@astrojs/solid-js": "^4.4.2",
"astro": "^4.16.6",
Expand All @@ -24,13 +23,14 @@
"node": "npm:23.0.0",
"remark-github-blockquote-alert": "^1.2.1",
"solid-devtools": "^0.30.1",
"solid-js": "^1.8.18",
"typescript": "^5.6.3"
"solid-js": "^1.8.18"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/ts-plugin": "^1.10.3",
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.11",
"lightningcss": "^1.28.1"
"lightningcss": "^1.28.1",
"typescript": "^5.6.3"
}
}
4 changes: 2 additions & 2 deletions src/components/experience/Experience.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import styles from "./Experience.module.css";
import type { ExperienceType } from "../ComponentTypes";
import ExperienceCard from "../cards/ExperienceCard";
//import ExperienceCard from "../cards/ExperienceCard";
const experienceObj: { [key: string]: ExperienceType } = {
pos0: {
Expand Down Expand Up @@ -158,7 +158,7 @@ const keys = Object.keys(experienceObj);
<ul class={styles.experience_list}>
{keys.map(item => (
<li class={styles.experience_item}>
<ExperienceCard {...experienceObj[item]} />
<!--<ExperienceCard {...experienceObj[item]} />-->
</li>
))}
</ul>
Expand Down

0 comments on commit 5c01e99

Please sign in to comment.