Skip to content

Commit

Permalink
Refs #37395 - lint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
parthaa committed May 29, 2024
1 parent 1fab291 commit f36a426
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ import { translate as __ } from '../../../common/I18n';
import { urlWithSearch } from '../../../common/urlHelpers';
import { foremanUrl } from '../../../common/helpers';

export const searchLink = ({ query, message, baseUrl }) => {
return {
children: message,
href: urlWithSearch(baseUrl, query),
};
};
export const searchLink = ({ query, message, baseUrl }) => ({
children: message,
href: urlWithSearch(baseUrl, query),
});

export const failedHostsToastParams = ({
message,
Expand Down

0 comments on commit f36a426

Please sign in to comment.