From bc69bc415f4330707e49bac5a457a805d04f8a3a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 17:44:10 +0200 Subject: [PATCH] Update formatting in App.tsx --- src/app/App.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 223fbf93..e29d007e 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -327,7 +327,7 @@ function formatModelBoundingBoxLabel(asset: ModelAssetRecord): string { const { size } = asset.metadata.boundingBox; - return `Bounds ${size.x.toFixed(2)} × ${size.y.toFixed(2)} × ${size.z.toFixed(2)} m`; + return `Bounds ${size.x.toFixed(2)} x ${size.y.toFixed(2)} x ${size.z.toFixed(2)} m`; } function formatModelAssetSummary(asset: ModelAssetRecord): string { @@ -342,7 +342,7 @@ function formatModelAssetSummary(asset: ModelAssetRecord): string { details.push(`${asset.metadata.animationNames.length} animation${asset.metadata.animationNames.length === 1 ? "" : "s"}`); } - return details.join(" • "); + return details.join(" | "); } function createModelInstancePlacementPosition(asset: ModelAssetRecord, anchor: Vec3 | null): Vec3 { @@ -2393,7 +2393,7 @@ export function App({ store, initialStatusMessage }: AppProps) {