mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 20:00:25 +00:00
Fix prop definition of externalProjects
This commit is contained in:
@@ -279,7 +279,7 @@ GitProfile.propTypes = {
|
||||
PropTypes.shape({
|
||||
title: PropTypes.string.isRequired,
|
||||
description: PropTypes.string.isRequired,
|
||||
link: PropTypes.string,
|
||||
link: PropTypes.string.isRequired,
|
||||
imageUrl: PropTypes.string,
|
||||
})
|
||||
),
|
||||
|
||||
6
types/index.d.ts
vendored
6
types/index.d.ts
vendored
@@ -222,10 +222,10 @@ export interface Certifications {
|
||||
}
|
||||
|
||||
export interface ExternalProjects {
|
||||
title?: string;
|
||||
description?: string;
|
||||
title: string;
|
||||
description: string;
|
||||
imageUrl?: string;
|
||||
link?: string;
|
||||
link: string;
|
||||
}
|
||||
|
||||
export interface Education {
|
||||
|
||||
Reference in New Issue
Block a user