Fix prop definition of externalProjects
This commit is contained in:
parent
53b4a1ee39
commit
984bee1fcf
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user