Skip to content

Commit

Permalink
Format the jsx files
Browse files Browse the repository at this point in the history
  • Loading branch information
EMaksy committed Sep 29, 2022
1 parent 9c3cd6a commit 90945be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/components/Tags/Tags.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import classNames from 'classnames';
import { EOS_NEW_LABEL, EOS_CLOSE } from 'eos-icons-react';
import Pill from '@components/Pill';
import useOnClickOutside from '@hooks/useOnClickOutside';

//eslint-disable-next-line
const tagRegexValidation = /^[\+\-=.,_:@\p{L}\w]*$/u;
const tagValidation = (char) => tagRegexValidation.test(char)
const tagValidation = (char) => tagRegexValidation.test(char);

const Tags = ({ className, tags, onChange, onAdd, onRemove }) => {
const [renderedTags, setTags] = useState(tags);
Expand Down

0 comments on commit 90945be

Please sign in to comment.