Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: removed the redundant undefined #1057

Merged
merged 9 commits into from
Oct 16, 2024
Merged
1 change: 0 additions & 1 deletion library/src/components/Href.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const Href: React.FunctionComponent<Props> = ({
href={href}
title={title}
className={className}
target="_blank"
rel="nofollow noopener noreferrer"
>
{children}
Expand Down
7 changes: 1 addition & 6 deletions library/src/helpers/__tests__/schema.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -905,12 +905,7 @@ describe('SchemaHelpers', () => {
).toMatchSnapshot();

expect(
SchemaHelpers.applicatorSchemaName(
1,
FIRST_CASE,
OTHER_CASES,
undefined,
),
SchemaHelpers.applicatorSchemaName(1, FIRST_CASE, OTHER_CASES),
).toMatchSnapshot();
});

Expand Down
Loading