We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b04a681 commit de4e4d7Copy full SHA for de4e4d7
src/components/_common/user-tests/UserTests.tsx
@@ -11,7 +11,6 @@ export type UserTestsComponentProps = {
11
data: UserTestsConfigData;
12
};
13
selectedTestIds: string[];
14
- _path?: string;
15
16
17
export const UserTests = (props: UserTestsComponentProps) => {
src/components/_common/user-tests/public-view/UserTestsPublicView.test.tsx
@@ -11,7 +11,7 @@ import { PageContextProvider } from 'store/pageContext';
const cookieId = 'cookie-1234';
-const baseProps: UserTestsComponentProps = {
+const baseProps: UserTestsComponentProps & { _path: string } = {
selectedTestIds: [],
tests: {
data: {
0 commit comments