chore: new changeset

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-10-14 11:18:14 +02:00
parent 47aea43209
commit 666d5b1431
2 changed files with 6 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/frontend-test-utils': patch
---
Disable the built-in `SignInPage` in `createExtensionTester` in order to not mess with existing tests
@@ -15,11 +15,8 @@
*/
import ReactDOM from 'react-dom/client';
import { signInPageModule } from './overrides/SignInPage';
import { createPublicSignInApp } from '@backstage/frontend-defaults';
const app = createPublicSignInApp({
features: [signInPageModule],
});
const app = createPublicSignInApp();
ReactDOM.createRoot(document.getElementById('root')!).render(app.createRoot());