We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03920a1 commit b9cf973Copy full SHA for b9cf973
src/components/description/DescriptionPanel.tsx
@@ -39,7 +39,7 @@ export const DescriptionPanel: FC<DescriptionPanelProps> = ({
39
index,
40
}) => {
41
if (image && !image.positionFromMdx) {
42
- image.positionFromMdx = Boolean(index % 2) ? 'left' : 'right';
+ image.positionFromMdx = index % 2 ? 'left' : 'right';
43
}
44
45
const isFullPage =
0 commit comments