Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleshike committed Apr 4, 2024
1 parent 57558e7 commit 0eba53a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions src/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ import {

import './Button.scss';

// eslint-disable-next-line no-shadow
export enum ButtonSizes {
SMALL = 'sm',
MEDIUM = 'md',
LARGE = 'lg',
}

// eslint-disable-next-line no-shadow
export enum ButtonVariants {
BRAND_GOOGLE = 'brand-google',
BRAND_FACEBOOK = 'brand-facebook',
Expand Down
2 changes: 1 addition & 1 deletion src/Drawer/Drawer.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ describe('Drawer', () => {

await waitFor(() => {
expect(onRequestClose).toHaveBeenCalled();
})
});
});

it('body tag has Drawer--open', () => {
Expand Down
1 change: 0 additions & 1 deletion src/InputLabel/InputLabel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import 'scss/forms/input_label.scss';

const InputLabel = ({
className,
elementType,
labelHtmlFor,
text,
required,
Expand Down
1 change: 0 additions & 1 deletion src/InputLegend/InputLegend.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import 'scss/forms/input_label.scss';

const InputLegend = ({
className,
elementType,
labelHtmlFor,
text,
required,
Expand Down
6 changes: 3 additions & 3 deletions src/RichTextEditor/RichTextEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { IOptions } from 'sanitize-html';
import type { AriaAttributes } from 'react';
import React, {
forwardRef, type ForwardedRef, useImperativeHandle, type AriaAttributes,
} from 'react';
import type { Extension, Node as TipTapNode, Mark } from '@tiptap/core';

import './RichTextEditor.scss';

import React, { forwardRef, type ForwardedRef, useImperativeHandle } from 'react';

import classNames from 'classnames';

import { EditorContent, useEditor } from '@tiptap/react';
Expand Down
2 changes: 1 addition & 1 deletion src/Tabs/Tabs.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('Tabs', () => {
userEvent.click(tabTwoButton);
await waitFor(() => {
expect(onSelectMock).toHaveBeenCalled();
})
});
});
});
});

0 comments on commit 0eba53a

Please sign in to comment.