diff --git a/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx b/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx
index 0dd1bf38e8a..4bd2db88921 100644
--- a/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx
+++ b/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx
@@ -360,7 +360,12 @@ export const TerseOffsetTable = (props: OffsetTableProps): JSX.Element => {
) : null}
- {labwareDisplayName}
+
+ {labwareDisplayName}
+
{isEqual(vector, IDENTITY_VECTOR) ? (
@@ -370,14 +375,20 @@ export const TerseOffsetTable = (props: OffsetTableProps): JSX.Element => {
{[vector.x, vector.y, vector.z].map((axis, index) => (
0 ? SPACING.spacing8 : 0}
marginRight={SPACING.spacing4}
fontWeight={TYPOGRAPHY.fontWeightSemiBold}
>
{['X', 'Y', 'Z'][index]}
- {axis.toFixed(1)}
+
+ {axis.toFixed(1)}
+
))}