Fixed coding styles

This commit is contained in:
Alejandro Celaya 2021-08-15 18:21:36 +02:00
parent edd536cc1e
commit 3484e74559
3 changed files with 3 additions and 3 deletions

View file

@ -59,4 +59,4 @@ export const ShortUrlCreation: FC<ShortUrlCreationProps> = ({ settings, setShort
</FormGroup>
</SimpleCard>
);
}
};

View file

@ -21,7 +21,7 @@ export type TagFilteringMode = 'startsWith' | 'includes';
export interface ShortUrlCreationSettings {
validateUrls: boolean;
tagFilteringMode?: TagFilteringMode
tagFilteringMode?: TagFilteringMode;
}
export interface UiSettings {

View file

@ -1,10 +1,10 @@
import { shallow, ShallowWrapper } from 'enzyme';
import { Mock } from 'ts-mockery';
import { DropdownItem } from 'reactstrap';
import { ShortUrlCreationSettings, Settings } from '../../src/settings/reducers/settings';
import { ShortUrlCreation } from '../../src/settings/ShortUrlCreation';
import ToggleSwitch from '../../src/utils/ToggleSwitch';
import { DropdownBtn } from '../../src/utils/DropdownBtn';
import { DropdownItem } from 'reactstrap';
describe('<ShortUrlCreation />', () => {
let wrapper: ShallowWrapper;