Skip to content

Commit bd942cc

Browse files
Fix lint errors
1 parent 8751fdf commit bd942cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/module/src/ConsoleInternal/components/markdown-view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type ShowdownExtension = {
1717
};
1818

1919
export const markdownConvert = async (markdown: string, extensions?: ShowdownExtension[]) => {
20-
DOMPurify.addHook('beforeSanitizeElements', function (node) {
20+
DOMPurify.addHook('beforeSanitizeElements', function(node) {
2121
// nodeType 1 = element type
2222

2323
// transform anchor tags

packages/module/src/controller/QuickStartTaskHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const QuickStartTaskHeader: React.FC<QuickStartTaskHeaderProps> = ({
8080
}
8181
getParsedTitle();
8282
}, [title]);
83-
83+
8484
const classNames = css('pfext-quick-start-task-header__title', {
8585
'pfext-quick-start-task-header__title-success': taskStatus === QuickStartTaskStatus.SUCCESS,
8686
'pfext-quick-start-task-header__title-failed':

0 commit comments

Comments
 (0)