Parcourir la source

Merge pull request #5543 from CatChenal/master

Removed <p> around the <pre> in <div>
Afshin Darian il y a 6 ans
Parent
commit
1432b56f51
1 fichiers modifiés avec 3 ajouts et 5 suppressions
  1. 3 5
      packages/application-extension/src/index.tsx

+ 3 - 5
packages/application-extension/src/index.tsx

@@ -142,11 +142,9 @@ const main: JupyterLabPlugin<void> = {
 
         const body = (
           <div>
-            <p>
-              JupyterLab build is suggested:
-              <br />
-              <pre>{response.message}</pre>
-            </p>
+            JupyterLab build is suggested:
+            <br />
+            <pre>{response.message}</pre>
           </div>
         );