diff --git a/src/react-components/create-object-dialog.js b/src/react-components/create-object-dialog.js
index ebf9a5cbafecc4bc09cac591f3fd3d7a8213f81f..6b314cfa7af6cf5cdb8ddca808a5c7457ebb1bdf 100644
--- a/src/react-components/create-object-dialog.js
+++ b/src/react-components/create-object-dialog.js
@@ -14,14 +14,13 @@ const attributionHostnames = {
 
 const DEFAULT_OBJECT_URL = "https://asset-bundles-prod.reticulum.io/interactables/Ducky/DuckyMesh-438ff8e022.gltf";
 const isMobile = AFRAME.utils.device.isMobile();
-const instructions = "Paste a URL or upload a file";
+const instructions = "Paste a URL or upload a file.";
 const desktopTips = "Tip: You can paste links directly into Hubs with Ctrl+V";
 const mobileInstructions = <div>{instructions}</div>;
 const desktopInstructions = (
   <div>
-    {instructions}
-    <br />
-    {desktopTips}
+    <p>{instructions}</p>
+    <p>{desktopTips}</p>
   </div>
 );