Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: riccardoperra/codeimage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e070858497b342da3786a0a225121cb0d1114496
Choose a base ref
..
head repository: riccardoperra/codeimage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8c24cec87f50de1b29c1c7b83858725dc399b29e
Choose a head ref
Showing with 4 additions and 1 deletion.
  1. +3 −0 apps/codeimage/index.html
  2. +1 −1 apps/codeimage/src/index.tsx
3 changes: 3 additions & 0 deletions apps/codeimage/index.html
Original file line number Diff line number Diff line change
@@ -80,6 +80,9 @@
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id='root'>
<div id='launcher' class='launcher'>
<img width='240px' src='/assets/codeimage-logo-white.svg' alt='logo' />
</div>
</div>
<script src='/src/index.tsx' type='module'></script>
</body>
2 changes: 1 addition & 1 deletion apps/codeimage/src/index.tsx
Original file line number Diff line number Diff line change
@@ -41,8 +41,8 @@ export function Bootstrap() {
{
path: '',
component: lazy(() => {
document.querySelector('#launcher')?.remove();
return import('./App').then(component => {
document.querySelector('#launcher')?.remove();
return component;
});
}),