review: Make widget prop mandatory

This commit is contained in:
Valere
2025-03-12 10:27:45 +01:00
parent b0a4a954f8
commit b02ad8871e
4 changed files with 16 additions and 5 deletions

View File

@@ -60,7 +60,7 @@ test.each<[string, ConnectionError]>([
const user = userEvent.setup();
render(
<MemoryRouter>
<GroupCallErrorBoundary recoveryActionHandler={vi.fn()}>
<GroupCallErrorBoundary recoveryActionHandler={vi.fn()} widget={null}>
<TestComponent />
</GroupCallErrorBoundary>
</MemoryRouter>,