Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(careers-whatislove-dev): pdf render wd-613 #618

Merged
merged 2 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/certifications-whatislove-dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"ci:lint": "concurrently \"npm:ci:lint:*\""
},
"dependencies": {
"@react-pdf/renderer": "3.1.14",
"@react-pdf/renderer": "3.4.4",
"@whatislove.dev/shared": "*",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let Bsa2022 = ({ user }) => {
`Volodymyr Minchenko`,
`Yurii Ohorodnikov`,
],
title: `BSA2022. \n Professional \n Project \n Development`,
title: `BSA2022. \nProfessional \nProject \nDevelopment`,
userName: `${user.firstName} ${user.lastName}`,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let Decorators = ({ user }) => {
completeDate: user.completeDate,
manager: `Vladyslav Zubko`,
mentors: [`Vladyslav Zubko`],
title: `ECMAScript \n Decor@tors. \n the Ones \n that are Real`,
title: `ECMAScript \nDecor@tors. \nthe Ones \nthat are Real`,
userName: `${user.firstName} ${user.lastName}`,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let Nodejs2022 = ({ user }) => {
completeDate: user.completeDate,
manager: `Vladyslav Zubko`,
mentors: [`Vladyslav Zubko`],
title: `Node.js. \n Development \n of App Servers \n and API`,
title: `Node.js. \nDevelopment \nof App Servers \nand API`,
userName: `${user.firstName} ${user.lastName}`,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let Webcomponents2022 = ({ user }) => {
completeDate: user.completeDate,
manager: `Vladyslav Zubko`,
mentors: [`Vladyslav Zubko`],
title: `Webcomponents. \n Development \n of New Web \n with LitElement`,
title: `Webcomponents. \nDevelopment \nof New Web \nwith LitElement`,
userName: `${user.firstName} ${user.lastName}`,
}

Expand Down
38 changes: 22 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"typescript": "5.3.3",
"vite": "5.1.5"
},
"overrides": {
"restructure": "3.0.0"
},
"simple-git-hooks": {
"pre-commit": "npm run git:hook:precommit",
"commit-msg": "npm run git:hook:commit"
Expand Down
Loading