Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Elpiu committed May 24, 2024
1 parent ae35630 commit 67c66ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Here're some of the project's best features:
- [X] Fast Customization --> /public/data/sharedData.json (modify with your data and save)
- [X] SEO friendly --> /lib/SEO.ts
- [X] GitHub Action Deploy (on GitHub Pages)
- [X] Fetch information form Repository (Branch must be named 'main')
- [X] In-project preview image [ Every repository must include a folder named '.github/RepoPortfolio-Your-GitHub-Story' containing an image named 'index.png'.]
- [X] Buy Me a coffee integration
- [X] CV Download By GoogleDrive Sharing
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/project/project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type TopicProps = {

export function Description(descriptionProps: DescriptionProps) {

let words = descriptionProps.description.split(" ")
let words = descriptionProps.description?.split(" ") || []

if (words.length > 20) {
let description = descriptionProps.description.split(" ").slice(0, 20)
Expand Down

0 comments on commit 67c66ac

Please sign in to comment.