We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bf112 commit ff5eb78Copy full SHA for ff5eb78
src/components/Tiles/RecordTile.tsx
@@ -10,7 +10,7 @@ export type RecordTileProps = {
10
organizationLink: string;
11
role: string;
12
duration: string;
13
- details?: React.ReactNode;
+ body?: React.ReactNode;
14
organizationBeforeRole?: boolean;
15
};
16
@@ -82,7 +82,7 @@ export function RecordTile({
82
organizationLink,
83
role,
84
duration,
85
- details,
+ body,
86
organizationBeforeRole = false,
87
}: RecordTileProps) {
88
const isTablet = useMediaQuery('(min-width: 768px)');
@@ -118,7 +118,7 @@ export function RecordTile({
118
organizationBeforeRole,
119
isTablet,
120
)}
121
- {details}
+ {body}
122
</div>
123
124
0 commit comments