mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 12:27:17 +00:00
Fix prop definition of externalProjects
This commit is contained in:
@@ -279,7 +279,7 @@ GitProfile.propTypes = {
|
|||||||
PropTypes.shape({
|
PropTypes.shape({
|
||||||
title: PropTypes.string.isRequired,
|
title: PropTypes.string.isRequired,
|
||||||
description: PropTypes.string.isRequired,
|
description: PropTypes.string.isRequired,
|
||||||
link: PropTypes.string,
|
link: PropTypes.string.isRequired,
|
||||||
imageUrl: PropTypes.string,
|
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 {
|
export interface ExternalProjects {
|
||||||
title?: string;
|
title: string;
|
||||||
description?: string;
|
description: string;
|
||||||
imageUrl?: string;
|
imageUrl?: string;
|
||||||
link?: string;
|
link: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Education {
|
export interface Education {
|
||||||
|
|||||||
Reference in New Issue
Block a user